From 730cef4c8603fa924ead4faeb239cdf356f45557 Mon Sep 17 00:00:00 2001 From: Oliver Bryan <65399431+hex248@users.noreply.github.com> Date: Mon, 8 Sep 2025 14:00:05 +0100 Subject: [PATCH] Fira Mono --- src/layouts/Layout.astro | 2 +- src/styles/global.css | 6 +++++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/src/layouts/Layout.astro b/src/layouts/Layout.astro index 9dfc4b6a..b9b560b8 100644 --- a/src/layouts/Layout.astro +++ b/src/layouts/Layout.astro @@ -13,7 +13,7 @@ const { currentPage } = Astro.props;
-
+
diff --git a/src/styles/global.css b/src/styles/global.css index ef7c7aba..90bf209c 100644 --- a/src/styles/global.css +++ b/src/styles/global.css @@ -1,3 +1,5 @@ +@import url("https://fonts.googleapis.com/css2?family=Fira+Mono:wght@400;500;700&display=swap"); + @import "tailwindcss"; :root { @@ -82,7 +84,9 @@ body { background-color: var(--ayu-bg); color: var(--ayu-fg); - font-family: "mono"; + font-family: "Fira Mono", monospace; + font-weight: 400; + font-style: normal; } .bg-ayu-bg {