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 <noreply@anthropic.com>
This commit is contained in:
thibaud-leclere
2026-03-29 23:12:15 +02:00
parent 201faf3789
commit 23c291d2c2

View File

@@ -275,6 +275,10 @@ body {
z-index: 300; z-index: 300;
} }
.modal-overlay[hidden] {
display: none;
}
.modal { .modal {
background: white; background: white;
border-radius: 12px; border-radius: 12px;