* ExtraContainer split into ExtraContainerItem * Updated Guidebook result item, grid and unit * Updated extra weapons grid and weapon grid
47 lines
886 B
SCSS
47 lines
886 B
SCSS
.item {
|
|
position: relative;
|
|
|
|
.header {
|
|
align-items: center;
|
|
display: flex;
|
|
flex-direction: row;
|
|
gap: $unit;
|
|
justify-content: center;
|
|
min-height: $unit-4x;
|
|
width: 100%;
|
|
|
|
& > h3 {
|
|
color: var(--extra-purple-text);
|
|
font-size: $font-small;
|
|
font-weight: $medium;
|
|
line-height: 1.2;
|
|
font-weight: 500;
|
|
text-align: center;
|
|
}
|
|
}
|
|
|
|
.content {
|
|
display: grid;
|
|
grid-template-columns: 1.19fr 3fr;
|
|
gap: $unit-2x;
|
|
padding: $unit-2x $unit-2x $unit-2x;
|
|
|
|
@include breakpoint(phone) {
|
|
grid-template-columns: auto;
|
|
grid-template-rows: auto 1fr;
|
|
}
|
|
|
|
&.Disabled {
|
|
grid-template-columns: 1fr;
|
|
|
|
.Header {
|
|
flex-direction: row;
|
|
justify-content: space-between;
|
|
}
|
|
}
|
|
|
|
&:not(:first-child) {
|
|
border-top: 1px solid var(--extra-purple-card-bg);
|
|
}
|
|
}
|
|
}
|