Skip to content

Commit

Permalink
💄 Adds customizable shoaddow for nav-link-shadow
Browse files Browse the repository at this point in the history
  • Loading branch information
Lissy93 committed Nov 6, 2021
1 parent a54bdd6 commit 20aed44
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/PageStrcture/Nav.vue
Original file line number Diff line number Diff line change
Expand Up @@ -64,8 +64,7 @@ export default {
outline: none;
border: none;
border-radius: var(--curve-factor);
-webkit-box-shadow: 1px 1px 2px #232323;
box-shadow: 1px 1px 2px #232323;
box-shadow: var(--nav-link-shadow);
color: var(--nav-link-text-color);
background: var(--nav-link-background-color);
border: 1px solid var(--nav-link-border-color);
Expand All @@ -74,6 +73,7 @@ export default {
color: var(--nav-link-text-color-hover);
background: var(--nav-link-background-color-hover);
border: 1px solid var(--nav-link-border-color-hover);
box-shadow: var(--nav-link-shadow-hover);
}
}
}
Expand Down

0 comments on commit 20aed44

Please sign in to comment.