* ExtraContainer split into ExtraContainerItem * Updated Guidebook result item, grid and unit * Updated extra weapons grid and weapon grid
38 lines
615 B
SCSS
38 lines
615 B
SCSS
.result {
|
|
border-radius: 6px;
|
|
display: flex;
|
|
gap: $unit;
|
|
padding: $unit * 1.5;
|
|
align-items: center;
|
|
|
|
&:hover {
|
|
background: var(--button-contained-bg);
|
|
cursor: pointer;
|
|
|
|
.info h5 {
|
|
color: var(--text-primary);
|
|
}
|
|
}
|
|
|
|
img {
|
|
background: $grey-80;
|
|
border-radius: 6px;
|
|
display: inline-block;
|
|
height: auto;
|
|
width: 90px;
|
|
}
|
|
|
|
.info {
|
|
display: flex;
|
|
flex-direction: column;
|
|
flex-grow: 1;
|
|
gap: $unit-half;
|
|
|
|
h5 {
|
|
color: var(--text-tertiary);
|
|
display: inline-block;
|
|
font-size: $font-medium;
|
|
font-weight: $medium;
|
|
}
|
|
}
|
|
}
|