Fix dark mode visited link color to prevent browser default purple
Add a:visited alongside a:link so visited links inherit the correct color in both light and dark mode, instead of falling back to the browser's default dark purple.
This commit is contained in:
parent
6a0fb0fe4d
commit
bb9ff3b4ba
1 changed files with 4 additions and 2 deletions
|
|
@ -29,7 +29,8 @@
|
||||||
padding-bottom: 40px;
|
padding-bottom: 40px;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
}
|
}
|
||||||
.repo-list a:link {
|
.repo-list a:link,
|
||||||
|
.repo-list a:visited {
|
||||||
color: #000;
|
color: #000;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
}
|
}
|
||||||
|
|
@ -93,7 +94,8 @@
|
||||||
background-color: #1e1e1e;
|
background-color: #1e1e1e;
|
||||||
color: #e0e0e0;
|
color: #e0e0e0;
|
||||||
}
|
}
|
||||||
.repo-list a:link {
|
.repo-list a:link,
|
||||||
|
.repo-list a:visited {
|
||||||
color: #e0e0e0;
|
color: #e0e0e0;
|
||||||
}
|
}
|
||||||
.repo {
|
.repo {
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue