No longer makes an API call for each instantiation—instead we use the weapon keys downloaded on the server
22 lines
335 B
SCSS
22 lines
335 B
SCSS
.mods {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: $unit * 4;
|
|
padding: 0 $unit-4x;
|
|
|
|
section {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: calc($unit / 2);
|
|
|
|
h3 {
|
|
color: $grey-55;
|
|
font-size: $font-small;
|
|
margin-bottom: $unit;
|
|
}
|
|
|
|
select {
|
|
background-color: $grey-90;
|
|
}
|
|
}
|
|
}
|