notification working

This commit is contained in:
2026-04-20 15:23:28 +05:30
parent 93dbf2023c
commit 237ba6b3c1
12 changed files with 523 additions and 86 deletions

View File

@@ -2112,7 +2112,7 @@
}
.confirm-modal {
background: var(--color-surface);
background: #ffffff;
border-radius: 20px;
padding: 1.75rem;
max-width: 380px;
@@ -2897,7 +2897,7 @@
}
[data-theme="dark"] .confirm-modal {
background: var(--color-surface);
background: #1e1e1e;
box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}
@@ -3189,7 +3189,6 @@
[data-theme="liquid-glass"] .calendar-card,
[data-theme="liquid-glass"] .entry-card,
[data-theme="liquid-glass"] .entry-modal,
[data-theme="liquid-glass"] .confirm-modal,
[data-theme="liquid-glass"] .settings-profile,
[data-theme="liquid-glass"] .settings-card,
[data-theme="liquid-glass"] .settings-tutorial-btn,
@@ -3412,6 +3411,14 @@
-webkit-backdrop-filter: blur(6px);
}
/* -- Modal boxes always opaque -- */
[data-theme="liquid-glass"] .confirm-modal,
[data-theme="liquid-glass"] .bg-modal {
background: #ffffff;
backdrop-filter: none;
-webkit-backdrop-filter: none;
}
/* -- Bottom nav -- */
[data-theme="liquid-glass"] .bottom-nav-btn {
color: #475569;
@@ -3820,7 +3827,7 @@ body.gj-has-bg .settings-page {
============================ */
.bg-modal {
background: var(--color-surface, #fff);
background: #ffffff;
border-radius: 20px;
padding: 1.5rem;
width: min(440px, calc(100vw - 2rem));