From df9191a81073e4337728b66dd147ff00a51fe9ec Mon Sep 17 00:00:00 2001 From: Andy Aylward Date: Mon, 9 Mar 2026 18:22:20 -0400 Subject: [PATCH] fix(golf): widen player area on desktop Remove max-width constraint on card grid and add width: 100% to player area so the 2x2 grid and action buttons fill the available space instead of being cramped in a narrow centered strip. Co-Authored-By: Claude Opus 4.6 --- src/apps/golf/components/GolfGame.module.css | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/apps/golf/components/GolfGame.module.css b/src/apps/golf/components/GolfGame.module.css index b53a243..ca9fb1f 100644 --- a/src/apps/golf/components/GolfGame.module.css +++ b/src/apps/golf/components/GolfGame.module.css @@ -458,6 +458,7 @@ display: flex; flex-direction: column; align-items: center; + width: 100%; } .playerArea h3 { @@ -469,7 +470,7 @@ .playerArea .cardGrid { justify-content: center; margin-bottom: 1.5rem; - max-width: 200px; + gap: 1rem; } .actions {