From b0479811fd755ec7a5f272b3fc684c02266d8c74 Mon Sep 17 00:00:00 2001 From: J-onasJones Date: Wed, 27 Sep 2023 14:10:33 +0200 Subject: [PATCH] Fixed an issue with link font colors Fixed the tag font colors with difference between normal and hover --- src/routes/+page.css | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/routes/+page.css b/src/routes/+page.css index 05be1dc..c973b94 100644 --- a/src/routes/+page.css +++ b/src/routes/+page.css @@ -24,6 +24,14 @@ body { text-align: center; } +a { + color: rgb(0, 255, 0); +} + +a:hover { + color: green; +} + .parallax-background { position: fixed; top: 0;