From 21090e552582856728dc1fadd3fff30b088b797e Mon Sep 17 00:00:00 2001 From: zhangyuheng Date: Tue, 10 Feb 2026 16:00:21 +0800 Subject: [PATCH] Change modal display style from block to flex --- stats_script.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stats_script.js b/stats_script.js index 82430f4..77f2080 100644 --- a/stats_script.js +++ b/stats_script.js @@ -221,5 +221,5 @@ function openModal(player) { document.getElementById('modal-mined').innerText = player.stats.mined.toLocaleString(); document.getElementById('modal-deaths').innerText = player.stats.deaths; - modal.style.display = "block"; + modal.style.display = "flex"; }