From 6c29eeceaf1e07d782f29e8e85e5d9b2a5966c61 Mon Sep 17 00:00:00 2001 From: David Gwilliam Date: Tue, 31 Mar 2026 03:51:29 -0700 Subject: [PATCH] fix: fine-tune player positions in match diagram --- src/app/matches/[id]/page.tsx | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/app/matches/[id]/page.tsx b/src/app/matches/[id]/page.tsx index 77507e2..7d5de64 100644 --- a/src/app/matches/[id]/page.tsx +++ b/src/app/matches/[id]/page.tsx @@ -88,9 +88,9 @@ export default async function MatchDetailPage({ params }: PageProps) {
{/* Table Square - Larger with more padding */}
- {/* Top: Team 1 Player 1 */} + {/* Top: Team 1 Player 1 - Moved 10px up */}
-
+

{match.team1P1.name}

@@ -106,10 +106,10 @@ export default async function MatchDetailPage({ params }: PageProps) {
Team 1
- {/* Bottom: Team 2 Player 2 */} + {/* Bottom: Team 2 Player 2 - Moved 10px down */}
Team 2
-
+

{match.team2P2.name}

@@ -124,9 +124,9 @@ export default async function MatchDetailPage({ params }: PageProps) {
- {/* Left: Team 1 Player 2 */} + {/* Left: Team 1 Player 2 - Moved 10px left */}
-
+

{match.team1P2.name}

@@ -141,9 +141,9 @@ export default async function MatchDetailPage({ params }: PageProps) {
- {/* Right: Team 2 Player 1 */} + {/* Right: Team 2 Player 1 - Moved 10px right */}
-
+

{match.team2P1.name}