diff --git a/apps/www/.vitepress/theme/components/CustomizerCode.vue b/apps/www/.vitepress/theme/components/CustomizerCode.vue index 62ed8ecdc..f948cbff4 100644 --- a/apps/www/.vitepress/theme/components/CustomizerCode.vue +++ b/apps/www/.vitepress/theme/components/CustomizerCode.vue @@ -23,32 +23,32 @@ async function copyCode() {
 
-@layer base {
-  :root {
-    --background: {{ activeTheme?.cssVars.light.background }};
-    --foreground: {{ activeTheme?.cssVars.light.foreground }};
+@layer base {
+  :root {
+    --background: {{ activeTheme?.cssVars.light.background }};
+    --foreground: {{ activeTheme?.cssVars.light.foreground }};
   
-    --border:{{ activeTheme?.cssVars.light.border }};
-    --input:{{ activeTheme?.cssVars.light.input }};
-    --ring:{{ activeTheme?.cssVars.light.ring }};
-    --radius: {{ config.radius }}rem;
-  }
-   
-  .dark {
-    --background:{{ activeTheme?.cssVars.dark.background }};
-    --foreground:{{ activeTheme?.cssVars.dark.foreground }};
+    --border:{{ activeTheme?.cssVars.light.border }};
+    --input:{{ activeTheme?.cssVars.light.input }};
+    --ring:{{ activeTheme?.cssVars.light.ring }};
+    --radius: {{ config.radius }}rem;
+  }
+   
+  .dark {
+    --background:{{ activeTheme?.cssVars.dark.background }};
+    --foreground:{{ activeTheme?.cssVars.dark.foreground }};
   
-    --border:{{ activeTheme?.cssVars.dark.border }};
-    --input:{{ activeTheme?.cssVars.dark.input }};
-    --ring:{{ activeTheme?.cssVars.dark.ring }};
-  }
-}
+    --border:{{ activeTheme?.cssVars.dark.border }};
+    --input:{{ activeTheme?.cssVars.dark.input }};
+    --ring:{{ activeTheme?.cssVars.dark.ring }};
+  }
+}