From 7be1ece6d68e4a6b9fad548c2b322150caea032f Mon Sep 17 00:00:00 2001 From: Joey Yakimowich-Payne Date: Fri, 18 Apr 2025 11:46:00 -0600 Subject: [PATCH] Change min size --- beango/js/beango.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/beango/js/beango.js b/beango/js/beango.js index 6d147cc..69401f8 100644 --- a/beango/js/beango.js +++ b/beango/js/beango.js @@ -1453,7 +1453,7 @@ function equalizeCellSizes() { } const gap = 4; // From CSS: .bingo-board { gap: 4px; } - const minCellSize = 100; // Minimum width/height for a cell + const minCellSize = 150; // Minimum width/height for a cell let maxWidthNeeded = 0; let maxHeightNeeded = 0;