From 8ec005d392f9a32e8465947057a0462e15e3a458 Mon Sep 17 00:00:00 2001 From: immortal521 Date: Fri, 15 Aug 2025 02:42:04 +0800 Subject: [PATCH] fix(about): fix link color issue on about page (#566) Questions: - Why are markdown styles split into `about-content` and `info-content-text`? - Why is `about-content` defined both globally and inside the Vue component? --- frontend_nuxt/assets/global.css | 2 ++ 1 file changed, 2 insertions(+) diff --git a/frontend_nuxt/assets/global.css b/frontend_nuxt/assets/global.css index de8178731..1d4bad069 100644 --- a/frontend_nuxt/assets/global.css +++ b/frontend_nuxt/assets/global.css @@ -190,11 +190,13 @@ body { opacity: 1; } +.about-content a, .info-content-text a { color: var(--primary-color); text-decoration: none; } +.about-content a:hover, .info-content-text a:hover { text-decoration: underline; }