From 2396305f27bef2dad8c2f3072959435eafe288a8 Mon Sep 17 00:00:00 2001 From: Cassidy Williams <1454517+cassidoo@users.noreply.github.com> Date: Thu, 29 Feb 2024 23:58:31 -0600 Subject: [PATCH] Minor footer styling --- src/components/Footer.astro | 1 + src/components/Tags.astro | 2 +- src/style/global.css | 8 ++++++++ 3 files changed, 10 insertions(+), 1 deletion(-) diff --git a/src/components/Footer.astro b/src/components/Footer.astro index 052df38..738acea 100644 --- a/src/components/Footer.astro +++ b/src/components/Footer.astro @@ -9,5 +9,6 @@ const today = new Date(); footer { padding: 25px; text-align: center; + font-size: 0.8rem; } diff --git a/src/components/Tags.astro b/src/components/Tags.astro index 5411cc2..ed5b31c 100644 --- a/src/components/Tags.astro +++ b/src/components/Tags.astro @@ -2,7 +2,7 @@ const { tags, all } = Astro.props; --- -{all &&

View posts by tag

} +{all &&

View posts by tag

}
{ tags && diff --git a/src/style/global.css b/src/style/global.css index f9133c4..3652de1 100644 --- a/src/style/global.css +++ b/src/style/global.css @@ -58,6 +58,11 @@ body.dark-mode nav { background: var(--transblack); } +.tag-title { + font-weight: 400; + color: var(--black); +} + @media (prefers-color-scheme: dark) { ::selection { background-color: #0f0f0f; @@ -90,6 +95,9 @@ body.dark-mode nav { body .tag { color: var(--gray); } + .tag-title { + color: var(--white); + } } h2,