From b09d91f323dc130e6561f510983c51ec5111f20a Mon Sep 17 00:00:00 2001 From: Yuval Adam <_@yuv.al> Date: Sun, 15 Jun 2025 14:29:26 +0200 Subject: Extract hard coded font families to globals.css --- src/styles/global.css | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) (limited to 'src/styles/global.css') 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 -- cgit v1.3.1