LANCommander/LANCommander.Launcher/Styles/_install-dialog.scss

62 lines
1.1 KiB
SCSS

.install-dialog {
&-addons-selector {
.ant-collapse-header {
padding: 6px 8px;
}
.ant-collapse-content {
border: 0;
}
}
&-addons-selector + &-directory-selector {
margin-top: 16px;
}
}
.remove-from-library-dialog {
.game-item {
display: grid;
grid-template-columns: auto 1fr;
grid-template-rows: auto auto;
grid-template-areas: "icon pre" "icon title";
align-items: center;
column-gap: 10px; /* Spacing between icon and text */
.icon {
grid-area: icon;
}
.pre {
grid-area: pre;
}
.title {
grid-area: title;
}
}
.game-item {
color: #aaa;
.icon {
width: 48px;
height: 48px;
img {
width: 48px;
height: 48px;
object-fit: cover;
}
}
.title {
display: block;
font-size: 1.1em;
font-weight: bold;
}
}
}