sendou.ink/app/components/match-page/MatchBannerBottomRow.module.css
Kalle 2b5b1b1948
Some checks are pending
E2E Tests / e2e (push) Waiting to run
Tests and checks on push / run-checks-and-tests (push) Waiting to run
Updates translation progress / update-translation-progress-issue (push) Waiting to run
New match page (#3032)
2026-05-04 18:15:10 +03:00

57 lines
948 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;
align-items: center;
gap: var(--s-1);
}
.mode {
background-color: var(--color-bg-higher);
border-radius: var(--radius-full);
padding: var(--s-1);
}
.modePlaceholder {
background-color: transparent;
padding: calc(var(--s-1) - 1px);
border: 1px dashed var(--color-bg-higher);
color: var(--color-text-low);
display: flex;
align-items: center;
justify-content: center;
}
.modeCount {
font-size: var(--font-sm);
font-weight: var(--weight-bold);
}
.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);
}