Skip to content

Commit

Permalink
fix: Burger button color in light theme (#3)
Browse files Browse the repository at this point in the history
  • Loading branch information
jonas-martinez authored Jul 7, 2024
1 parent a6b9781 commit 5c60597
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions css/home.css
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,9 @@ body>nav {
&>label>img {
cursor: pointer;

filter: invert(99%) sepia(9%) saturate(674%) hue-rotate(178deg) brightness(99%) contrast(94%);
@media (prefers-color-scheme: dark) {
filter: invert(99%) sepia(9%) saturate(674%) hue-rotate(178deg) brightness(99%) contrast(94%);
}
}
}
}
Expand Down Expand Up @@ -159,7 +161,8 @@ body>section:nth-of-type(2) {

@media (prefers-color-scheme: dark) {
&>a>img {
filter: brightness(0) saturate(100%) invert(99%) sepia(9%) saturate(674%) hue-rotate(178deg) brightness(99%) contrast(94%);;
filter: brightness(0) saturate(100%) invert(99%) sepia(9%) saturate(674%) hue-rotate(178deg) brightness(99%) contrast(94%);
;
}
}
}
Expand Down

0 comments on commit 5c60597

Please sign in to comment.