This commit is contained in:
pika 2025-03-24 14:38:18 +01:00
parent e99b2745bd
commit 16e8490b30
6 changed files with 330 additions and 90 deletions

View file

@ -1,5 +1,7 @@
/* Beautiful modal styles */
.modal {
/* Modal Styles */
.modal,
.upload-modal,
[class*="-modal"] {
display: none;
position: fixed;
top: 0;
@ -13,7 +15,9 @@
transition: opacity 0.3s ease, visibility 0.3s ease;
}
.modal.active {
.modal.active,
.upload-modal.active,
[class*="-modal"].active {
display: flex;
opacity: 1;
visibility: visible;