From 83b2a3e96ec88b4953cdf1bdad36ff4fca78b802 Mon Sep 17 00:00:00 2001 From: Claude Date: Sat, 1 Aug 2026 02:31:58 +0000 Subject: [PATCH] Fix locked dice jumping to fill new grid slot .zone-matched used justify-content: flex-end in a flexbox fixed to exactly 2 columns wide. A lone die in a row was packed into the right/2nd slot; when a second die locked into that row, both got re-packed together, shoving the first die from the right slot to the left slot. Left-aligning fills rows left-to-right instead, so an already-locked die keeps its slot when a new one locks in beside it. --- static/css/game.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/static/css/game.css b/static/css/game.css index c83dc6c2..25bc98df 100644 --- a/static/css/game.css +++ b/static/css/game.css @@ -120,7 +120,7 @@ display: flex; flex-wrap: wrap; align-content: flex-start; - justify-content: flex-end; + justify-content: flex-start; gap: 14px; flex-shrink: 0; inline-size: calc(2 * 56px + 14px);