* ExtraContainer split into ExtraContainerItem * Updated Guidebook result item, grid and unit * Updated extra weapons grid and weapon grid
18 lines
345 B
SCSS
18 lines
345 B
SCSS
.container {
|
|
background: var(--extra-purple-bg);
|
|
border-radius: $card-corner;
|
|
display: flex;
|
|
margin: $unit-4x auto 0;
|
|
flex-direction: column;
|
|
max-width: calc($grid-width + $unit-2x);
|
|
width: 100%;
|
|
// gap: $unit;
|
|
|
|
& > * {
|
|
border-bottom: 2px solid var(--background);
|
|
|
|
&:last-child {
|
|
border-bottom: none;
|
|
}
|
|
}
|
|
}
|