From b12cdba0205d98b1a1c9ba66557db9cf7f2ca2f1 Mon Sep 17 00:00:00 2001 From: outfoxxed Date: Thu, 17 Oct 2024 20:26:56 -0700 Subject: [PATCH] disable transitions while switching themes --- src/styles/global.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/styles/global.css b/src/styles/global.css index 2d888de..cfe1fdc 100644 --- a/src/styles/global.css +++ b/src/styles/global.css @@ -11,6 +11,10 @@ @import "./docs/docs.css"; @import "./docs/collapsible.css"; +.changing-theme * { + transition: none !important; +} + /* color styling */ .header { background-color: hsl(var(--bg-400));