This commit is contained in:
2025-07-15 16:53:57 +02:00
parent 672cfbee11
commit ee6a1bc25c
2 changed files with 8 additions and 0 deletions

View File

@@ -4,6 +4,8 @@
@custom-variant dark (&:is(.dark *)); @custom-variant dark (&:is(.dark *));
@theme inline { @theme inline {
--font-display: 'TikTok Sans', 'sans-serif';
--color-background: var(--background); --color-background: var(--background);
--color-foreground: var(--foreground); --color-foreground: var(--foreground);
--color-card: var(--card); --color-card: var(--card);

View File

@@ -90,3 +90,9 @@ const breadcrumbs = computed(() => getBreadcrumbs(route.path));
</main> </main>
</SidebarProvider> </SidebarProvider>
</template> </template>
<style>
* {
font-family: 'TikTok Sans', sans-serif;
}
</style>