From 6c771810f796e912eacf9e9126d2508daaba4929 Mon Sep 17 00:00:00 2001 From: adlee-was-taken Date: Sun, 22 Feb 2026 16:50:55 -0500 Subject: [PATCH] Distribute space evenly between draw pile and player hand on mobile Replace margin:auto on table-center with space-evenly on player-row so the draw pile and player cards are equally spaced vertically. Co-Authored-By: Claude Opus 4.6 --- client/style.css | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/client/style.css b/client/style.css index 27f7274..ca720a1 100644 --- a/client/style.css +++ b/client/style.css @@ -5048,7 +5048,7 @@ body.mobile-portrait .player-row { display: flex; flex-direction: column; align-items: center; - justify-content: center; + justify-content: space-evenly; gap: 10px; width: 100%; flex: 1 1 0%; @@ -5114,7 +5114,6 @@ body.mobile-portrait .opponent-showing { body.mobile-portrait .table-center { padding: 5px 10px; border-radius: 8px; - margin: auto 0; } body.mobile-portrait .deck-area {