Fix modal backgrounds to be solid white instead of transparent

This commit is contained in:
Mondo Diaz
2026-01-28 16:25:22 +00:00
parent 1b2bc33aba
commit 1f5d3665c8
4 changed files with 8 additions and 7 deletions

View File

@@ -149,12 +149,12 @@
}
.modal-content {
background: var(--color-bg);
background: #ffffff;
border-radius: var(--radius-lg);
padding: 1.5rem;
width: 100%;
max-width: 400px;
box-shadow: var(--shadow-xl);
box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}
.modal-content h2 {