summaryrefslogtreecommitdiff
path: root/examples/blog/src/components/BaseHead.astro
diff options
context:
space:
mode:
authorGravatar Marcus Otterström <github@otterstrom.dev> 2022-07-08 22:08:32 +0200
committerGravatar GitHub <noreply@github.com> 2022-07-08 22:08:32 +0200
commit59e8c71786fd1c154904b3fefa7d26d88f4d92d2 (patch)
tree3a352e838b25a402c608913aeca21f471d75a826 /examples/blog/src/components/BaseHead.astro
parent1f9e4857ff2b2cb7db89d619618cdf546cd3b3dc (diff)
downloadastro-59e8c71786fd1c154904b3fefa7d26d88f4d92d2.tar.gz
astro-59e8c71786fd1c154904b3fefa7d26d88f4d92d2.tar.zst
astro-59e8c71786fd1c154904b3fefa7d26d88f4d92d2.zip
Format astro files in examples (#3862)
Diffstat (limited to 'examples/blog/src/components/BaseHead.astro')
-rw-r--r--examples/blog/src/components/BaseHead.astro7
1 files changed, 5 insertions, 2 deletions
diff --git a/examples/blog/src/components/BaseHead.astro b/examples/blog/src/components/BaseHead.astro
index 2725363a6..8bc4036a9 100644
--- a/examples/blog/src/components/BaseHead.astro
+++ b/examples/blog/src/components/BaseHead.astro
@@ -1,5 +1,5 @@
---
-import '../styles/blog.css';
+import "../styles/blog.css";
export interface Props {
title: string;
@@ -35,4 +35,7 @@ const { title, description, permalink } = Astro.props;
<!-- Fonts -->
<link rel="preconnect" href="https://fonts.gstatic.com" />
-<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=IBM+Plex+Mono&family=IBM+Plex+Sans:wght@400;700&display=swap" />
+<link
+ rel="stylesheet"
+ href="https://fonts.googleapis.com/css2?family=IBM+Plex+Mono&family=IBM+Plex+Sans:wght@400;700&display=swap"
+/>