From f8d0764bcfd106aaed7a68ba588a8d0269ffc401 Mon Sep 17 00:00:00 2001 From: Kieran Klukas <92754843+kcoderhtml@users.noreply.github.com> Date: Fri, 29 Dec 2023 20:50:20 -0500 Subject: [PATCH] feat: added underlined link --- src/components/Footer.astro | 2 +- src/styles/globals.css | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/src/components/Footer.astro b/src/components/Footer.astro index df758dc..2e6bf9a 100644 --- a/src/components/Footer.astro +++ b/src/components/Footer.astro @@ -4,7 +4,7 @@ Powered by Netlify

- For any inquiries, or simply to say hi, please email us here! + For any inquiries, or simply to say hi, please email us!

diff --git a/src/styles/globals.css b/src/styles/globals.css index 12ccf2d..07b076b 100644 --- a/src/styles/globals.css +++ b/src/styles/globals.css @@ -101,6 +101,10 @@ a { color: inherit; text-decoration: inherit; } +a:hover { + text-decoration: underline; + text-decoration-color: var(--dl-color-purple-light); +} input { padding: 2px 4px;