💄 style: invert social icons when hovering

This makes it consistent with the behaviour of all other links.
main
welpo 2 years ago
parent 999861ba58
commit 794470d99a
No known key found for this signature in database
GPG Key ID: A2F978CF4EC1F5A6

@ -43,6 +43,16 @@ footer {
filter: invert(1);
}
[data-theme="light"] .social>img {
filter: invert(0);
[data-theme="light"] {
.social {
&:hover {
&>img {
filter: invert(1);
}
}
&>img {
filter: none;
}
}
}

Loading…
Cancel
Save