hensei-web/components/weapon/WeaponModal/index.module.scss
Justin Edmund c65b2597aa Refactor WeaponKeySelect
No longer makes an API call for each instantiation—instead we use the weapon keys downloaded on the server
2023-07-03 19:05:05 -07:00

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;
}
}
}