From ce77db7fcebac6ccaff2d1fe17491cab53663264 Mon Sep 17 00:00:00 2001 From: alex wennerberg Date: Thu, 18 Jul 2024 21:33:08 -0400 Subject: [PATCH] fix light mode css --- TODO | 1 + views/style.css | 17 +++++++++-------- 2 files changed, 10 insertions(+), 8 deletions(-) diff --git a/TODO b/TODO index 0158fe8..c12f3ec 100644 --- a/TODO +++ b/TODO @@ -15,6 +15,7 @@ Notifications (Including integration with PWA / browser API) post preview on edit? Search - auto-hyperlink @mention maybe? +move reply button to right side ----- alpha waterline ----- (may push lower to get something more complete out) diff --git a/views/style.css b/views/style.css index 09aaa14..eb58489 100644 --- a/views/style.css +++ b/views/style.css @@ -9,14 +9,15 @@ } @media(prefers-color-scheme: dark) { -:root { - --text: #e7e7e7; - --text-inverse: #000; - --text-alt: #999; - --bg: #0d0d0d; - --bg-inverse: #ccc; - --bg-alt: #161616; - --border: #444; + :root { + --text: #e7e7e7; + --text-inverse: #000; + --text-alt: #999; + --bg: #0d0d0d; + --bg-inverse: #ccc; + --bg-alt: #161616; + --border: #444; + } } svg { -- 2.45.2