refactor(docs): note for NuxtLink usage, added geist font in example, minor cleanups

This commit is contained in:
2026-03-14 22:57:05 +05:30
parent 7751ee5db8
commit 06f9c3ee15
6 changed files with 57 additions and 20 deletions

View File

@@ -1,9 +1,15 @@
@import "tailwindcss";
@import url("https://fonts.googleapis.com/css2?family=Geist+Mono:wght@100..900&display=swap");
.geist-mono-100 {
font-optical-sizing: auto;
font-weight: 100;
font-style: normal;
}
:root {
--background: #ffffff;
--foreground: #171717;
font-weight: 400;
font-family: "Geist Mono", monospace;
}
@media (prefers-color-scheme: dark) {
@@ -14,11 +20,14 @@
}
@theme {
--font-sans: var(--font-geist-sans);
--font-mono: var(--font-geist-mono);
--color-background: var(--background);
--color-foreground: var(--foreground);
}
body {
@apply bg-background text-foreground;
font-family: Arial, Helvetica, sans-serif;
}
background-color: var(--background);
color: var(--foreground);
font-family: var(--font-geist-mono-100);
}