From c353c228c850aa9d9a0a31e1ed467acb3bda99de Mon Sep 17 00:00:00 2001 From: Max Schmidt Date: Tue, 15 Aug 2023 21:01:58 +0200 Subject: [PATCH] remove global.css Signed-off-by: Max Schmidt --- astro/src/global.css | 28 ---------------------------- astro/src/layouts/Layout.astro | 16 ++++++++++++++++ 2 files changed, 16 insertions(+), 28 deletions(-) delete mode 100644 astro/src/global.css diff --git a/astro/src/global.css b/astro/src/global.css deleted file mode 100644 index 7d60c28..0000000 --- a/astro/src/global.css +++ /dev/null @@ -1,28 +0,0 @@ -@tailwind base; -@tailwind components; -@tailwind utilities; - -@font-face { - font-family: "Plex"; - src: url("/fonts/Plex-Regular.woff2") format("woff2"); - font-weight: normal; - font-style: normal; - font-display: swap; -} -@font-face { - font-family: "Plex"; - src: url("/fonts/Plex-Bold.woff2") format("woff2"); - font-weight: bold; - font-style: normal; - font-display: swap; -} - -h1 { - @apply text-6xl font-bold; -} -h2 { - @apply text-4xl font-bold; -} -h3 { - @apply text-xl font-bold; -} diff --git a/astro/src/layouts/Layout.astro b/astro/src/layouts/Layout.astro index e287d69..0d06c22 100644 --- a/astro/src/layouts/Layout.astro +++ b/astro/src/layouts/Layout.astro @@ -16,6 +16,22 @@ const { title } = Astro.props; {title} +