Fira Mono

This commit is contained in:
Oliver Bryan
2025-09-08 14:00:05 +01:00
parent 2d9ff354b1
commit 730cef4c86
2 changed files with 6 additions and 2 deletions

View File

@@ -13,7 +13,7 @@ const { currentPage } = Astro.props;
</head> </head>
<body> <body>
<Header currentPage={currentPage} /> <Header currentPage={currentPage} />
<div class="p-2"> <div class="px-4 py-2">
<slot /> <slot />
</div> </div>
</body> </body>

View File

@@ -1,3 +1,5 @@
@import url("https://fonts.googleapis.com/css2?family=Fira+Mono:wght@400;500;700&display=swap");
@import "tailwindcss"; @import "tailwindcss";
:root { :root {
@@ -82,7 +84,9 @@
body { body {
background-color: var(--ayu-bg); background-color: var(--ayu-bg);
color: var(--ayu-fg); color: var(--ayu-fg);
font-family: "mono"; font-family: "Fira Mono", monospace;
font-weight: 400;
font-style: normal;
} }
.bg-ayu-bg { .bg-ayu-bg {