Header is close

This commit is contained in:
MotorTruck1221
2025-03-18 01:46:09 -06:00
parent a972e43c2c
commit e56d2189ad
5 changed files with 17 additions and 1 deletions
+2 -1
View File
@@ -1,6 +1,7 @@
---
import "@styles/themes/default.css";
import "@styles/global.css";
import "@fontsource/inter";
import { ClientRouter } from "astro:transitions";
import SettingsLoader from "@components/SettingsLoader.astro";
import Header from "@components/Header.astro";
@@ -16,7 +17,7 @@ import Header from "@components/Header.astro";
<title>Radius</title>
<ClientRouter fallback="animate" />
</head>
<body class="h-full w-full bg-(--background)">
<body class="h-full w-full bg-(--background) font-override">
<Header />
<div class="h-full w-full fixed bg-(--background)">
<slot />
+5
View File
@@ -1 +1,6 @@
@import "tailwindcss";
.font-override {
font-family: var(--font-family), Inter, sans-serif;
}
+1
View File
@@ -21,4 +21,5 @@
--destructive-foreground: hsl(0 0% 100%);
--ring: hsl(215.09 100% 98.03%);
--radius: hsl(0.4rem);
--font-family: Inter;
}