Fix font styling for dark mode and strong text

This commit is contained in:
Cassidy Williams
2023-04-08 14:46:54 -05:00
parent d6449a24dc
commit 0bc047028a
2 changed files with 13 additions and 3 deletions

View File

@@ -1,7 +1,7 @@
---
import "../style/global.css";
import { SITE_TITLE } from "../config"
import { SITE_TITLE } from "../config";
const { title, description, image = "/home-blog-card.png" } = Astro.props;
---
@@ -36,11 +36,18 @@ const { title, description, image = "/home-blog-card.png" } = Astro.props;
<meta name="twitter:creator" content="@cassidoo" />
<meta name="twitter:image" content="http://cassidoo.co/img/headshot.png" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css?family=Roboto+Mono"
href="https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&display=swap"
rel="stylesheet"
/>
<!-- RSS Link -->
<link rel="alternate" href="/rss.xml" type="application/rss+xml" title={SITE_TITLE}>
<link
rel="alternate"
href="/rss.xml"
type="application/rss+xml"
title={SITE_TITLE}
/>
</head>