hensei-web/components/SummonGrid/index.scss
Justin Edmund 471b61b2c0 Clean up font-size
We'll have to change this to rems in the future, but at least we're just changing variables
2022-01-25 01:35:39 -08:00

35 lines
No EOL
645 B
SCSS

.SummonGrid {
display: grid;
grid-template-columns: auto auto auto;
grid-column-gap: $unit * 2;
justify-content: center;
& .Label {
color: $grey-50;
font-size: $font-small;
font-weight: $medium;
margin-bottom: $unit;
text-align: center;
}
}
#grid_summons {
display: grid;
grid-template-columns: auto auto;
grid-column-gap: $unit * 2;
grid-template-rows: 1fr;
grid-row-gap: $unit * 3;
}
#grid_summons > li {
list-style: none;
min-height: 180px;
}
#ExtraSummons #grid_summons > li {
min-height: 0;
.SummonUnit {
min-height: 0;
}
}