Fix falsche Style Datei wird reingeladen

This commit is contained in:
Moritz Utcke
2024-11-20 12:29:53 +11:00
parent 7779ff3e10
commit 3bdcf77cb0
6 changed files with 11 additions and 10 deletions

View File

@@ -1,7 +1,7 @@
---
import i18next from "i18next";
import "../style/global.scss";
import "#style/global.css";
import "../../svelte-dialogs.config"
import "svelte-ripple-action/ripple.css"
import DashboardSidebar from "../components/Dashboard/DashboardSidebar.svelte"
@@ -50,7 +50,7 @@ const schema = JSON.stringify({
},
});
let lightTheme = Astro.cookies.get("theme").value === "light";
let lightTheme = Astro.cookies.get("theme")?.value === "light";
---
<!DOCTYPE html>