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 94154c4
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/layouts/Layout.vue
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,11 @@ 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 94154c4

Please sign in to comment.