Skip to content

Commit

Permalink
fix: reverse active and hover colors for sidebar links
Browse files Browse the repository at this point in the history
  • Loading branch information
dev-rb committed Oct 18, 2024
1 parent 3cd87f1 commit 899bcb1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/client/components/Layout.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -133,11 +133,11 @@

&:hover,
&:focus {
background: color-mix(in hsl, var(--text-color) 10%, transparent);
background: color-mix(in hsl, var(--text-color) 5%, transparent);
}

&.active {
background: color-mix(in hsl, var(--text-color) 5%, transparent);
background: color-mix(in hsl, var(--text-color) 10%, transparent);
}
}
}
Expand Down

0 comments on commit 899bcb1

Please sign in to comment.