diff --git a/frontend/src/App.jsx b/frontend/src/App.jsx index 8083fe6..9c1410e 100644 --- a/frontend/src/App.jsx +++ b/frontend/src/App.jsx @@ -5574,6 +5574,34 @@ function TeamTotalsRoundTable({ teams, highlight, onHover, navigate }) { ) } +function TeamTotalsColumn({ round, navigate, highlight, onHover }) { + const [collapsed, setCollapsed] = useState(false) + return ( +
+ + {collapsed ? null : ( +
+ +
+ )} +
+ ) +} + function TeamTotals({ sides, navigate, highlight, onHover }) { const roundTotals = useMemo(() => { return sides.flatMap((side) => { @@ -5612,23 +5640,13 @@ function TeamTotals({ sides, navigate, highlight, onHover }) {
{roundTotals.map((round, index) => ( -
- -
- -
-
+ ))}
@@ -5685,7 +5703,7 @@ function TournamentDetailPage({ tournamentId, navigate }) { Back to tournaments -
+

Tournament — {tournamentId} diff --git a/frontend/src/styles.css b/frontend/src/styles.css index 7214934..014dd4a 100644 --- a/frontend/src/styles.css +++ b/frontend/src/styles.css @@ -944,7 +944,7 @@ h3 { justify-content: center; padding: 0.5rem 0.375rem; border-right: 1px solid var(--color-border); - font-size: 0.65rem; + font-size: 0.8rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;