diff options
| author | IwanIDev <iwan@iwani.dev> | 2026-03-31 15:23:33 +0100 |
|---|---|---|
| committer | IwanIDev <iwan@iwani.dev> | 2026-03-31 15:23:33 +0100 |
| commit | e65c986f4d70c04a541fd15c2f966ab130f7b1e6 (patch) | |
| tree | 83786f09af5f64230064ad7fe62d1f340bca51b5 | |
| parent | d8c2b5d87993ec11c05c54f8e237ccaeaccccde2 (diff) | |
| -rw-r--r-- | src/styles/global.css | 20 |
1 files changed, 19 insertions, 1 deletions
diff --git a/src/styles/global.css b/src/styles/global.css index 705033a..7c29275 100644 --- a/src/styles/global.css +++ b/src/styles/global.css @@ -7,7 +7,9 @@ @theme inline { --font-heading: var(--font-mono); - --font-mono: 'JetBrains Mono Variable', monospace; + /* --font-mono: 'JetBrains Mono Variable', monospace; */ + --font-mono: var(--font-body); + --font-body: 'Helvetica', sans-serif; --color-sidebar-ring: var(--sidebar-ring); --color-sidebar-border: var(--sidebar-border); --color-sidebar-accent-foreground: var(--sidebar-accent-foreground); @@ -131,4 +133,20 @@ p > a { @apply hover:underline text-blue-600; } + + h1 { + @apply text-4xl font-bold; + } + + h2 { + @apply text-3xl font-bold; + } + + h3 { + @apply text-2xl font-bold; + } + + h4, h5, h6 { + @apply text-xl font-bold; + } } |
