Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
pirog committed Sep 15, 2020
1 parent 5ceeee6 commit 99701ea
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions site/.vuepress/theme/components/Header.vue
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,9 @@
.nav-link {color: {{ color }};}
.nav-link:hover {color: {{ hover }};}
.nav-link.router-link-active {color: {{ active }};}
.home-link {color: {{ color }};}
.nav-link.home-link {color: {{ color }};}
.nav-link.home-link:hover {color: {{ color }};}
.nav-link.home-link.router-link-active {color: {{ color }};}
</style>
<button
id="nav_toggle"
Expand Down Expand Up @@ -117,15 +119,15 @@ export default {
},
active: {
type: String,
default: '#47474a',
default: '#ed3f7a',
},
color: {
type: String,
default: '#47474a',
},
hover: {
type: String,
default: '#47474a',
default: '#ed3f7a',
},
},
data() {
Expand Down

0 comments on commit 99701ea

Please sign in to comment.