From 71506399089ce68c9e05a2bd1823b65cb9b093f7 Mon Sep 17 00:00:00 2001 From: Tom Butcher Date: Sun, 2 Aug 2026 14:15:04 +0100 Subject: [PATCH] Remove media queries for color scheme in preload.css to simplify styling. This change eliminates the background color definitions for dark and light modes, streamlining the CSS for the loader component. --- public/preload.css | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/public/preload.css b/public/preload.css index 96288a7..b4fedfa 100644 --- a/public/preload.css +++ b/public/preload.css @@ -6,18 +6,6 @@ align-items: center; } -@media (prefers-color-scheme: dark) { - body { - background-color: black; - } -} - -@media (prefers-color-scheme: light) { - body { - background-color: white; - } -} - /* HTML:
*/ .fc-loader { width: 35px;