From c4764e95054c5d1615ace598969076a1718e71fa Mon Sep 17 00:00:00 2001 From: Grzegorz Kucmierz Date: Tue, 10 Feb 2026 03:10:37 +0100 Subject: [PATCH] fix: allow horizontal scroll on desktop for large grids --- src/components/GameBoard.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/GameBoard.vue b/src/components/GameBoard.vue index af6a669..8f663ce 100644 --- a/src/components/GameBoard.vue +++ b/src/components/GameBoard.vue @@ -258,7 +258,7 @@ watch(() => store.size, async () => { /* Desktop: Remove scroll behavior to ensure full grid visibility */ @media (min-width: 769px) { .game-board-wrapper { - overflow-x: visible; + overflow-x: auto; /* Allow scrolling if grid is too large (e.g. 80x80) */ align-items: center; /* Center the grid on desktop */ } }