fix: allow horizontal scroll on desktop for large grids

This commit is contained in:
2026-02-10 03:10:37 +01:00
parent 49fdcde530
commit 4a78a7680f

View File

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