Skip to content

Commit

Permalink
Feat: Change hover colors to shades of gray
Browse files Browse the repository at this point in the history
  • Loading branch information
NihadBadalov committed Feb 15, 2024
1 parent 4d6ea43 commit 3a4631b
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/layouts/Layout.vue
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,10 @@ export default {
.nav-link {
&:hover {
background-color: rgba($primary, 0.2);
background-color: rgba(0, 0, 0, 0.05);
.dark & {
background-color: rgba(255, 255, 255, 0.05);
}
}
&.status-page {
Expand Down

0 comments on commit 3a4631b

Please sign in to comment.