We'll have to change this to rems in the future, but at least we're just changing variables
35 lines
No EOL
645 B
SCSS
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;
|
|
}
|
|
} |