Skip to content

Commit

Permalink
Fix: Correct colors
Browse files Browse the repository at this point in the history
  • Loading branch information
NihadBadalov committed Feb 20, 2024
1 parent 94154c4 commit 17dfdac
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions src/layouts/Layout.vue
Original file line number Diff line number Diff line change
Expand Up @@ -212,10 +212,16 @@ export default {
.nav-link {
&:hover {
background-color: rgba(0, 0, 0, 0.05);
background-color: $primary;
color: #fff;
.dark & {
background-color: rgba(255, 255, 255, 0.05);
background-color: $primary;
color: #000;
}
&.active {
background-color: $highlight;
}
}
Expand Down

0 comments on commit 17dfdac

Please sign in to comment.