From d45ce48932941f696b2c984cd8aafe5db768d791 Mon Sep 17 00:00:00 2001 From: twwu Date: Fri, 22 Nov 2024 11:02:45 +0800 Subject: [PATCH] fix: update theme imports in globals.css --- web/app/styles/globals.css | 4 ++-- web/themes/{other-dark.css => manual-dark.css} | 0 web/themes/{other-light.css => manual-light.css} | 0 3 files changed, 2 insertions(+), 2 deletions(-) rename web/themes/{other-dark.css => manual-dark.css} (100%) rename web/themes/{other-light.css => manual-light.css} (100%) diff --git a/web/app/styles/globals.css b/web/app/styles/globals.css index 8b74c07afd..9db035a28c 100644 --- a/web/app/styles/globals.css +++ b/web/app/styles/globals.css @@ -4,8 +4,8 @@ @import "../../themes/light.css"; @import "../../themes/dark.css"; -@import "../../themes/other-light.css"; -@import "../../themes/other-dark.css"; +@import "../../themes/manual-light.css"; +@import "../../themes/manual-dark.css"; html[data-changing-theme] * { transition: none !important; diff --git a/web/themes/other-dark.css b/web/themes/manual-dark.css similarity index 100% rename from web/themes/other-dark.css rename to web/themes/manual-dark.css diff --git a/web/themes/other-light.css b/web/themes/manual-light.css similarity index 100% rename from web/themes/other-light.css rename to web/themes/manual-light.css