Fix(UI): Corrected text colours for links visited and unvisited in light and dark themes.

This commit is contained in:
2025-03-05 17:14:00 +00:00
parent b4927ac440
commit 48c4c9bef6
2 changed files with 20 additions and 8 deletions

View File

@@ -17,3 +17,10 @@ body {
h1, h2, h3 {
color: var(--primary-colour);
}
a {
color: var(--text-link-unvisited-colour)
}
a:visited {
color: var(--text-link-visited-colour)
}