diff options
| author | Yuval Adam <_@yuv.al> | 2025-06-15 14:29:26 +0200 |
|---|---|---|
| committer | Yuval Adam <_@yuv.al> | 2025-06-15 14:29:26 +0200 |
| commit | b09d91f323dc130e6561f510983c51ec5111f20a (patch) | |
| tree | 4013ac8ce6b00a22dce9ab094920144226e224de /src/styles/global.css | |
| parent | 600f54c92b4a9173246e37ccbe13c6aaff4992ca (diff) | |
Extract hard coded font families to globals.css
Diffstat (limited to 'src/styles/global.css')
| -rw-r--r-- | src/styles/global.css | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/src/styles/global.css b/src/styles/global.css index ab19ef9..a8c5052 100644 --- a/src/styles/global.css +++ b/src/styles/global.css @@ -1,2 +1,11 @@ @import "tailwindcss"; -@plugin "@tailwindcss/typography";
\ No newline at end of file +@plugin "@tailwindcss/typography"; + +body { + font-family: 'Inter', system-ui, -apple-system, sans-serif; + line-height: 1.7; +} + +.font-mono { + font-family: 'JetBrains Mono', monospace; +}
\ No newline at end of file |
