summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/components/HomePageHeader.astro2
-rw-r--r--src/styles/global.css6
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;
+ }
+}