mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-05-12 13:49:22 -05:00
41 lines
621 B
CSS
41 lines
621 B
CSS
.root {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
padding-inline: var(--s-1-5);
|
|
|
|
@container (max-width: 500px) {
|
|
flex-direction: column-reverse;
|
|
align-items: center;
|
|
gap: var(--s-3);
|
|
}
|
|
}
|
|
|
|
.activeRosters {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: var(--s-2);
|
|
}
|
|
|
|
.modeProgress {
|
|
display: flex;
|
|
gap: var(--s-1);
|
|
}
|
|
|
|
.mode {
|
|
background-color: var(--color-bg-higher);
|
|
border-radius: var(--radius-full);
|
|
padding: var(--s-1);
|
|
}
|
|
|
|
.team {
|
|
display: flex;
|
|
gap: var(--s-1);
|
|
}
|
|
|
|
.vs {
|
|
text-transform: uppercase;
|
|
font-size: var(--font-3xs);
|
|
font-weight: var(--weight-bold);
|
|
color: var(--color-text-high);
|
|
}
|