Fix: Hide modals properly with display:none !important

This commit is contained in:
Roberth Rajala 2026-02-01 17:14:16 +01:00
parent 0ae90b8b85
commit 79170ffa21
1 changed files with 4 additions and 2 deletions

View File

@ -1579,7 +1579,7 @@ body {
Service Info Modals
======================================== */
.service-modal {
display: none;
display: none !important;
position: fixed;
inset: 0;
z-index: 9999;
@ -1590,11 +1590,13 @@ body {
padding: 2rem;
opacity: 0;
transition: opacity 0.3s ease;
pointer-events: none;
}
.service-modal.active {
display: flex;
display: flex !important;
opacity: 1;
pointer-events: auto;
}
.modal-content {