tss site blah

This commit is contained in:
FURRO404
2026-06-20 21:58:27 -07:00
parent 1eb0f1ffc8
commit 45142f280a
5 changed files with 83 additions and 16 deletions
+41
View File
@@ -831,6 +831,47 @@ h3 {
font-size: 0.62rem;
}
.tournament-bracket-grid {
display: flex;
gap: 2.6rem;
min-width: max-content;
}
.tournament-round-column {
position: relative;
display: flex;
width: 190px;
min-width: 190px;
flex-direction: column;
gap: 0.75rem;
}
.tournament-match-node {
position: relative;
z-index: 1;
}
.tournament-match-node::before,
.tournament-match-node::after {
position: absolute;
top: 50%;
z-index: 0;
display: block;
height: 1px;
width: 1.3rem;
background: color-mix(in srgb, var(--color-border) 78%, var(--color-fury-violet));
content: "";
pointer-events: none;
}
.tournament-match-node-left::before {
right: calc(100% + 0.05rem);
}
.tournament-match-node-right::after {
left: calc(100% + 0.05rem);
}
@keyframes scrollPulse {
0% {
transform: translateY(-100%);