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:
parent
201faf3789
commit
23c291d2c2
1 changed files with 4 additions and 0 deletions
|
|
@ -275,6 +275,10 @@ body {
|
|||
z-index: 300;
|
||||
}
|
||||
|
||||
.modal-overlay[hidden] {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.modal {
|
||||
background: white;
|
||||
border-radius: 12px;
|
||||
|
|
|
|||
Loading…
Reference in a new issue