Files
wanderer/assets/js/hooks/Mapper/components/ui-kit/CharacterCard/CharacterCard.module.scss
guarzo 55465688c8 Add hover tooltips for local counter and kills bookmark (#130)
* feat: add local pilots and kills display on hover
2025-02-04 21:19:13 +04:00

50 lines
683 B
SCSS

.CharacterCard {
}
.EveIcon {
display: flex;
transition:
border-color 250ms,
opacity 250ms;
min-width: 33px;
min-height: 33px;
width: 33px;
height: 33px;
border-width: 1px;
border-style: solid;
border-color: #272727;
background-color: rgba(0, 0, 0, 0);
border-radius: 0 !important;
}
.CharName {
max-width: 10rem;
&.CardBorderLeftIsOwn {
color: rgb(251 146 60 / 1)
}
}
.CharIcon {
border-radius: 0 !important;
border: 1px solid #2b2b2b;
}
.CharRow {
display: grid;
gap: 4px;
&.TwoColumns {
grid-template-columns: auto 1fr;
}
&.ThreeColumns {
grid-template-columns: auto 1fr auto;
}
}
.CardBorderLeftIsOwn {
}