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>
<body>
<Header currentPage={currentPage} />
<div class="p-2">
<div class="px-4 py-2">
<slot />
</div>
</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";
: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 {