From 52a8cd20236acdf8fa294e53b277df461fbf47e3 Mon Sep 17 00:00:00 2001 From: FURRO404 Date: Sun, 21 Jun 2026 02:30:32 -0700 Subject: [PATCH] meow --- frontend/src/App.jsx | 2 +- frontend/src/styles.css | 7 ++++--- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/frontend/src/App.jsx b/frontend/src/App.jsx index 5d41b2c..0c2b351 100644 --- a/frontend/src/App.jsx +++ b/frontend/src/App.jsx @@ -4263,7 +4263,7 @@ function TournamentDetailPage({ tournamentId, navigate }) { ) : null} {bracketSides.length ? ( -
+
{hasStandings || listSides.length ? (

Playoffs

) : null} diff --git a/frontend/src/styles.css b/frontend/src/styles.css index 00d4897..7680f17 100644 --- a/frontend/src/styles.css +++ b/frontend/src/styles.css @@ -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); }