mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-08-17 16:23:33 -05:00
41 lines
586 B
CSS
41 lines
586 B
CSS
.body {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: var(--s-3);
|
|
padding-block: var(--s-0-5);
|
|
}
|
|
|
|
.info {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: var(--s-0-5);
|
|
min-width: 0;
|
|
}
|
|
|
|
.name {
|
|
font-size: var(--font-xs);
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.weapon {
|
|
font-size: var(--font-2xs);
|
|
font-weight: var(--weight-semi);
|
|
color: var(--color-text-high);
|
|
}
|
|
|
|
.abilities {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: var(--s-2-5);
|
|
margin-inline-start: auto;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.gear {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: var(--s-0-5);
|
|
}
|