From e14450f37328312f492890d279b7a1d963894656 Mon Sep 17 00:00:00 2001 From: d3m0k1d Date: Tue, 17 Feb 2026 16:30:10 +0300 Subject: [PATCH] fix bug with font on light theme --- frontend/src/App.css | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/frontend/src/App.css b/frontend/src/App.css index 49d8bab..4aeddfc 100644 --- a/frontend/src/App.css +++ b/frontend/src/App.css @@ -1,7 +1,16 @@ @import "tailwindcss"; @plugin "daisyui"; + #root { max-width: 1280px; margin: 0 auto; padding: 2rem; + color: oklch(var(--bc)); + +} + + +body { + color: oklch(var(--bc)); + background-color: oklch(var(--b1)); }