Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file removed public/fonts/terminus-bold.ttf
Binary file not shown.
Binary file added public/fonts/terminus-bold.woff2
Binary file not shown.
Binary file removed public/fonts/terminus.ttf
Binary file not shown.
Binary file added public/fonts/terminus.woff2
Binary file not shown.
4 changes: 2 additions & 2 deletions src/layouts/Page.astro
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@ const { title, path = "~/" + title.toLowerCase().replaceAll(" ", "-") + ".md" }
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link
rel="preload"
href="/fonts/terminus.ttf"
href="/fonts/terminus.woff2"
as="font"
type="font/ttf"
type="font/woff2"
crossorigin
/>
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
Expand Down
2 changes: 1 addition & 1 deletion src/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

@font-face {
font-family: Terminus;
src: url("/fonts/terminus.ttf");
src: url("/fonts/terminus.woff2");
font-weight: 400;
font-style: normal;
}
Expand Down