style: update footer link hover in dark mode
This commit is contained in:
parent
6b8124d810
commit
55f9174380
1 changed files with 7 additions and 0 deletions
|
@ -45,6 +45,13 @@ const year = new Date().getFullYear()
|
||||||
&:hover {
|
&:hover {
|
||||||
color: var(--color-brand-blue-5);
|
color: var(--color-brand-blue-5);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media (prefers-color-scheme: dark) {
|
||||||
|
color: var(--text-color-light);
|
||||||
|
&:hover {
|
||||||
|
color: var(--color-brand-complement);
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
footer {
|
footer {
|
||||||
margin-top: 2em;
|
margin-top: 2em;
|
||||||
|
|
Loading…
Reference in a new issue