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 */ } }