Change modal display style from block to flex

This commit is contained in:
zhangyuheng
2026-02-10 16:00:21 +08:00
parent d8bb134d33
commit 21090e5525

View File

@@ -221,5 +221,5 @@ function openModal(player) {
document.getElementById('modal-mined').innerText = player.stats.mined.toLocaleString(); document.getElementById('modal-mined').innerText = player.stats.mined.toLocaleString();
document.getElementById('modal-deaths').innerText = player.stats.deaths; document.getElementById('modal-deaths').innerText = player.stats.deaths;
modal.style.display = "block"; modal.style.display = "flex";
} }