💄 style: invert social icons when hovering

This makes it consistent with the behaviour of all other links.
This commit is contained in:
welpo 2023-02-08 14:34:26 +01:00
parent 999861ba58
commit 794470d99a
No known key found for this signature in database
GPG Key ID: A2F978CF4EC1F5A6

View File

@ -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;
}
}
}