From 1e153b34ef5ade23c3700a385686734e93e9280c Mon Sep 17 00:00:00 2001 From: Brian Fertig Date: Tue, 16 Jun 2026 18:10:26 -0600 Subject: [PATCH] **Fix: Increase Monopoly popup dialog height and padding** Adjust the popup dialog dimensions in MonopolyGame.js to improve content visibility and spacing. Increases maximum height from 620px to 800px and bottom padding from 20px to 48px. --- public/src/games/monopoly/MonopolyGame.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/src/games/monopoly/MonopolyGame.js b/public/src/games/monopoly/MonopolyGame.js index 4e3aa9a..113f61f 100644 --- a/public/src/games/monopoly/MonopolyGame.js +++ b/public/src/games/monopoly/MonopolyGame.js @@ -1287,7 +1287,7 @@ export default class MonopolyGame extends Phaser.Scene { ]; const pw = 440, itemH = 48; - const ph = Math.min(620, 60 + items.length * (itemH + 8) + 20); + const ph = Math.min(800, 60 + items.length * (itemH + 8) + 48); const px = GAME_WIDTH/2 - pw/2, py = GAME_HEIGHT/2 - ph/2; const overlay = this.add.graphics().setDepth(DEPTH.popup - 1);