From 724e56de85fe0be8ea85fdb520d6931f2494f28f Mon Sep 17 00:00:00 2001 From: Dilson's Pickles Date: Sat, 11 Feb 2023 18:56:07 +0000 Subject: [PATCH] Import css instead of linking --- src/layouts/Layout.astro | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/layouts/Layout.astro b/src/layouts/Layout.astro index c0c3dba..0261711 100644 --- a/src/layouts/Layout.astro +++ b/src/layouts/Layout.astro @@ -1,9 +1,11 @@ --- +import '../assets/main.css'; export interface Props { title: string; } const { title } = Astro.props; + --- @@ -12,7 +14,6 @@ const { title } = Astro.props; - {title} @@ -34,3 +35,4 @@ const { title } = Astro.props; Bitstream Vera Sans Mono, Courier New, monospace; } +