Files
sendou.ink/app/features/tournament-bracket/components/Bracket/BracketColumns.module.css
2026-08-21 22:02:47 +03:00

29 lines
483 B
CSS

.elimContainer {
--line-width: 30px;
display: grid;
grid-template-columns: repeat(
var(--round-count),
calc(var(--match-width) + var(--line-width))
);
overflow: visible;
}
.elimRoundMatchesContainer {
display: flex;
flex-direction: column;
justify-content: space-around;
gap: var(--s-8);
margin-top: var(--s-6);
flex: 1;
overflow: visible;
}
.elimRoundMatchesContainerTopBye {
margin-top: -18px;
}
.elimRoundColumn {
display: flex;
flex-direction: column;
}