Only apply a colour changes to the footer

These looked weird on regular links and buttons
This commit is contained in:
Jake Howard 2022-08-17 13:48:33 +01:00
parent f554c9fb48
commit 73dd1d6ba0
Signed by: jake
GPG key ID: 57AFB45680EDD477
2 changed files with 4 additions and 6 deletions

View file

@ -5,5 +5,9 @@ footer.footer {
@include dark-mode { @include dark-mode {
background-color: $dark; background-color: $dark;
color: $grey-light; color: $grey-light;
a:hover {
color: $grey-lighter;
}
} }
} }

View file

@ -30,10 +30,4 @@ main {
a { a {
transition: color 0.25s, background-color 0.25s; transition: color 0.25s, background-color 0.25s;
@include dark-mode {
&:not(.button):hover {
color: $grey-lighter;
}
}
} }