From 0047bca2c3da4c05ccb1e21a857c65e864dd786c Mon Sep 17 00:00:00 2001 From: IwanIDev Date: Tue, 31 Mar 2026 13:49:44 +0100 Subject: refactor: add URL underline to all anchor tags --- src/components/HomePageHeader.astro | 2 +- src/styles/global.css | 6 +++++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/src/components/HomePageHeader.astro b/src/components/HomePageHeader.astro index a66b7f4..50c5fa7 100644 --- a/src/components/HomePageHeader.astro +++ b/src/components/HomePageHeader.astro @@ -4,7 +4,7 @@

Iwan Ingman

- I'm a Computer Science student at Cardiff University, + I'm a Computer Science student at Cardiff University, with a focus on Software Development.

diff --git a/src/styles/global.css b/src/styles/global.css index 4b9a83c..38d2570 100644 --- a/src/styles/global.css +++ b/src/styles/global.css @@ -127,4 +127,8 @@ html { @apply font-mono; } -} \ No newline at end of file + + a { + @apply hover:underline text-blue-600; + } +} -- cgit