* Fix job accessory popover, so shields and manatura can be selected again * Don't show AX skill section in weapon hovercard if no AX skill is set * Center uncap indicator under item image and fix hovercard header layout * Fix a bug that prevented all ring bonuses from displaying in hovercard * Fix transcendence_step being set to 0 when updating a character's masteries * Fix weapon modal so you can set AX skills on weapons with rupee or exp gain * Ensure job accessory and transcendence popovers open/close properly
37 lines
590 B
SCSS
37 lines
590 B
SCSS
.accessories {
|
|
display: grid;
|
|
gap: $unit;
|
|
grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
|
|
|
|
@include breakpoint(tablet) {
|
|
grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
|
|
gap: 0;
|
|
}
|
|
}
|
|
|
|
.equippedAccessory {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: $unit-2x;
|
|
|
|
h3 {
|
|
margin: 0;
|
|
}
|
|
|
|
.accessory {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: $unit;
|
|
|
|
h4 {
|
|
font-size: $font-small;
|
|
font-weight: $medium;
|
|
text-align: center;
|
|
}
|
|
|
|
img {
|
|
border-radius: $item-corner;
|
|
width: 150px;
|
|
}
|
|
}
|
|
}
|