From b2eb5e5e3601c6313aad02d95a9cc4ffdaa2c984 Mon Sep 17 00:00:00 2001 From: Leo Vasanko Date: Wed, 10 Dec 2025 18:47:56 +0000 Subject: [PATCH] Fix regression from adding color-scheme: light dark improperly at :root (html) rather than at body. --- frontend/src/assets/style.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/assets/style.css b/frontend/src/assets/style.css index 39b17f8..b4062f6 100644 --- a/frontend/src/assets/style.css +++ b/frontend/src/assets/style.css @@ -1,6 +1,5 @@ :root { - color-scheme: light dark; --font-sans: "Inter", "Inter var", "Segoe UI", system-ui, -apple-system, "Helvetica Neue", sans-serif; --font-mono: "DM Mono", "JetBrains Mono", "SFMono-Regular", Menlo, Monaco, Consolas, "Liberation Mono", monospace; --color-canvas: #f5f6f8; @@ -80,6 +79,7 @@ html { } body { + color-scheme: light dark; overflow: auto; scrollbar-gutter: stable; height: 100%;