diff options
| author | IwanIDev <iwan@iwani.dev> | 2026-03-31 13:49:44 +0100 |
|---|---|---|
| committer | IwanIDev <iwan@iwani.dev> | 2026-03-31 13:49:44 +0100 |
| commit | 0047bca2c3da4c05ccb1e21a857c65e864dd786c (patch) | |
| tree | 5e523d24d413c2763c7c85806b1effb1d5b743b9 | |
| parent | e232b0b97e4f0371d5101e5e77e6cce66c3e7518 (diff) | |
refactor: add URL underline to all anchor tags
| -rw-r--r-- | src/components/HomePageHeader.astro | 2 | ||||
| -rw-r--r-- | 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 @@ <div class="flex flex-col items-center px-4"> <h1 class="text-4xl font-bold text-center mt-10">Iwan Ingman</h1> <p class="text-lg text-center text-muted-foreground mt-4"> - I'm a Computer Science student at <a class="hover:underline text-blue-600" href="https://www.cardiff.ac.uk">Cardiff University</a>, + I'm a Computer Science student at <a href="https://www.cardiff.ac.uk">Cardiff University</a>, with a focus on Software Development. </p> </div> 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; + } +} |
