This commit is contained in:
FURRO404
2026-06-21 02:30:32 -07:00
parent 26b48ed04e
commit 52a8cd2023
2 changed files with 5 additions and 4 deletions
+1 -1
View File
@@ -4263,7 +4263,7 @@ function TournamentDetailPage({ tournamentId, navigate }) {
) : null}
{bracketSides.length ? (
<div className="space-y-6">
<div className="space-y-12">
{hasStandings || listSides.length ? (
<h2 className="text-lg font-semibold">Playoffs</h2>
) : null}
+4 -3
View File
@@ -836,13 +836,14 @@ h3 {
tactical grid that pans with the bracket (it lives on the scrolling content). */
.bracket-viewport {
position: relative;
width: 100vw;
margin-left: calc(50% - 50vw);
width: 85vw;
margin-left: calc(50% - 42.5vw);
max-height: 78vh;
overflow: auto;
overscroll-behavior: contain;
cursor: grab;
border-block: 1px solid var(--color-border);
border: 1px solid var(--color-border);
border-radius: 0.5rem;
background-color: color-mix(in srgb, var(--color-bg) 86%, #000);
}