mirror of
https://github.com/wanderer-industries/wanderer
synced 2025-12-03 14:32:36 +00:00
49 lines
654 B
SCSS
49 lines
654 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;
|
|
}
|
|
|
|
.CharRow {
|
|
display: grid;
|
|
gap: 4px;
|
|
|
|
&.TwoColumns {
|
|
grid-template-columns: auto 1fr;
|
|
}
|
|
|
|
&.ThreeColumns {
|
|
grid-template-columns: auto 1fr auto;
|
|
}
|
|
}
|
|
|
|
.CardBorderLeftIsOwn {
|
|
|
|
}
|