From 2fa606d0e07e4dc37e888d11de78e3766af7747b Mon Sep 17 00:00:00 2001 From: David Gwilliam Date: Tue, 31 Mar 2026 03:49:15 -0700 Subject: [PATCH] fix: increase player name padding in match diagram --- src/app/matches/[id]/page.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/app/matches/[id]/page.tsx b/src/app/matches/[id]/page.tsx index 1665684..77507e2 100644 --- a/src/app/matches/[id]/page.tsx +++ b/src/app/matches/[id]/page.tsx @@ -89,7 +89,7 @@ export default async function MatchDetailPage({ params }: PageProps) { {/* Table Square - Larger with more padding */}
{/* Top: Team 1 Player 1 */} -
+

{match.team1P1.name} @@ -107,7 +107,7 @@ export default async function MatchDetailPage({ params }: PageProps) {

{/* Bottom: Team 2 Player 2 */} -
+
Team 2

@@ -125,7 +125,7 @@ export default async function MatchDetailPage({ params }: PageProps) {

{/* Left: Team 1 Player 2 */} -
+

{match.team1P2.name} @@ -142,7 +142,7 @@ export default async function MatchDetailPage({ params }: PageProps) {

{/* Right: Team 2 Player 1 */} -
+

{match.team2P1.name}