From 23c291d2c23968e65011c3a37e208a839a57754c Mon Sep 17 00:00:00 2001 From: thibaud-leclere Date: Sun, 29 Mar 2026 23:12:15 +0200 Subject: [PATCH] fix: modal-overlay hidden attribute overridden by display:flex The CSS display:flex on .modal-overlay was overriding the HTML hidden attribute, making the modal always visible. Co-Authored-By: Claude Opus 4.6 --- assets/styles/app.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/assets/styles/app.css b/assets/styles/app.css index b0567dc..90b165d 100644 --- a/assets/styles/app.css +++ b/assets/styles/app.css @@ -275,6 +275,10 @@ body { z-index: 300; } +.modal-overlay[hidden] { + display: none; +} + .modal { background: white; border-radius: 12px;