fix(theme): apply theme colors to body element

- Add background and text color to body
- Ensures page background changes with theme
This commit is contained in:
Gigi
2025-10-14 09:25:13 +02:00
parent ba8229d464
commit 65051c9c1f

View File

@@ -2,6 +2,8 @@
/* Body - keep only app-specific overrides */
body {
background: var(--color-bg);
color: var(--color-text);
overscroll-behavior: none;
-webkit-overflow-scrolling: touch;
overflow-x: hidden;