From 9057c5971eaaba2cf660e5373a8c55f2a6dbff1d Mon Sep 17 00:00:00 2001 From: cfngc4594 Date: Thu, 20 Feb 2025 09:11:02 +0800 Subject: [PATCH] feat(styles): Use Fira Code font for body text --- src/app/globals.css | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/app/globals.css b/src/app/globals.css index 341693c..e9d580c 100644 --- a/src/app/globals.css +++ b/src/app/globals.css @@ -1,3 +1,5 @@ +@import "@fontsource/fira-code"; + @tailwind base; @tailwind components; @tailwind utilities; @@ -66,5 +68,6 @@ body { @apply bg-background text-foreground; + font-family: "Fira Code"; } } \ No newline at end of file