From 42abdf5eff26c2cfb991108f66d865ebbe30e341 Mon Sep 17 00:00:00 2001 From: Ash Entwisle Date: Tue, 19 Sep 2023 04:12:15 +0000 Subject: [PATCH] size tweaks Signed-off-by: Ash Entwisle --- src/components/Error.astro | 2 +- src/styles.scss | 12 ++++-------- 2 files changed, 5 insertions(+), 9 deletions(-) diff --git a/src/components/Error.astro b/src/components/Error.astro index 22cce52..944b491 100644 --- a/src/components/Error.astro +++ b/src/components/Error.astro @@ -8,7 +8,7 @@ const { code } = Astro.props;
-

Error: { code }

+

Error: { code }

diff --git a/src/styles.scss b/src/styles.scss index 9639d0b..f3d7904 100644 --- a/src/styles.scss +++ b/src/styles.scss @@ -54,28 +54,28 @@ markdown { h1 { margin: 10px; - @apply text-4xl; + @apply text-3xl; @apply font-bold; } h2 { margin: 10px; - @apply text-3xl; + @apply text-2xl; @apply font-bold; } h3 { margin: 10px; - @apply text-2xl; + @apply text-xl; @apply font-bold; } h4 { margin: 10px; - @apply text-xl; + @apply text-lg; @apply font-bold; } @@ -84,7 +84,6 @@ markdown { margin-top: 25px; margin-bottom: 25px; - @apply text-lg; } ul { @@ -92,7 +91,6 @@ markdown { margin-top: 10px; margin-bottom: 10px; - @apply text-lg; } ol { @@ -100,7 +98,6 @@ markdown { margin-top: 10px; margin-bottom: 10px; - @apply text-lg; } li { @@ -111,7 +108,6 @@ markdown { list-style-type: disc; - @apply text-lg; } }