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?
This commit is contained in:
immortal521
2025-08-15 02:42:04 +08:00
parent b1f92f61a6
commit 8ec005d392

View File

@@ -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;
}