From e375cc5370a0bd6feadc74a300cdea4a6ed047e2 Mon Sep 17 00:00:00 2001 From: Jezza Hehn Date: Fri, 10 Apr 2026 02:12:27 +0000 Subject: [PATCH] Fix light mode footer - white text on dark bg was invisible --- css/style.css | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/css/style.css b/css/style.css index 793025c..77ac173 100644 --- a/css/style.css +++ b/css/style.css @@ -107,6 +107,12 @@ background-color: #ffffff; } +[data-theme="light"] .footer.has-background-dark.has-text-light { + background-color: #e9ecef !important; + color: #1a1a1a !important; + border-top: 1px solid #dee2e6; +} + /* ====== FOREST THEME ====== */ [data-theme="forest"] .hero.is-kp { background: linear-gradient(135deg, #0d1a0d 0%, #1a3a1a 50%, #0f2e0f 100%);