From 2b7861700be3e34af10ebc45c9e0fe0ca832ba86 Mon Sep 17 00:00:00 2001 From: Jan Kremer Date: Tue, 27 May 2025 18:14:58 +0200 Subject: [PATCH] css: Tested in Chrome, fixed --- assets/css/main.css | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/assets/css/main.css b/assets/css/main.css index 310f8af..222546e 100644 --- a/assets/css/main.css +++ b/assets/css/main.css @@ -114,8 +114,8 @@ a { text-decoration: none; &:hover { - text-decoration-color: var(--uchu-blue); text-decoration: underline; + text-decoration-color: var(--uchu-blue); } } @@ -155,11 +155,16 @@ header { a { color: light-dark(var(--uchu-yin), var(--uchu-yang)); - } - .active { - text-decoration: underline; - text-decoration-color: var(--uchu-blue); + &:hover { + text-decoration: underline; + text-decoration-color: var(--uchu-blue); + } + + &.active { + text-decoration: underline; + text-decoration-color: var(--uchu-blue); + } } } }