summaryrefslogtreecommitdiff
path: root/src/styles/global.css
diff options
context:
space:
mode:
authorIwanIDev <iwan@iwani.dev>2026-03-31 13:49:44 +0100
committerIwanIDev <iwan@iwani.dev>2026-03-31 13:49:44 +0100
commit0047bca2c3da4c05ccb1e21a857c65e864dd786c (patch)
tree5e523d24d413c2763c7c85806b1effb1d5b743b9 /src/styles/global.css
parente232b0b97e4f0371d5101e5e77e6cce66c3e7518 (diff)
refactor: add URL underline to all anchor tags
Diffstat (limited to 'src/styles/global.css')
-rw-r--r--src/styles/global.css6
1 files changed, 5 insertions, 1 deletions
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;
+ }
+}