mirror of
https://github.com/tobspr/shapez.io.git
synced 2025-12-13 02:01:51 +00:00
Most existing mods aren't going to work in CE and the system will be reworked some time later, so this will work for now.
35 lines
713 B
SCSS
35 lines
713 B
SCSS
#state_ModsState {
|
|
.modsGrid {
|
|
display: grid;
|
|
grid-template-columns: repeat(3, 1fr);
|
|
gap: 0.5em;
|
|
|
|
.noMods {
|
|
grid-template-columns: unset;
|
|
place-items: center;
|
|
}
|
|
}
|
|
|
|
.mod {
|
|
display: flex;
|
|
flex-direction: column;
|
|
padding: 0.6em;
|
|
gap: 0.3em;
|
|
background-color: $mainBgColor;
|
|
@include S(border-radius, 0.75 * $globalBorderRadius);
|
|
@include PlainText;
|
|
|
|
.title b {
|
|
@include Text;
|
|
}
|
|
|
|
.advanced {
|
|
@include SuperSmallText;
|
|
}
|
|
|
|
@include DarkThemeOverride {
|
|
background-color: $darkModeGameBackground;
|
|
}
|
|
}
|
|
}
|