We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 485005d commit 193fd41Copy full SHA for 193fd41
_layouts/default.html
@@ -69,7 +69,7 @@
69
<li>
70
<a href="{{nav.url}}"
71
{%- if nav.newpage %}target="_blank" rel="noopener noreferrer"{% endif %}
72
- class="tab {% if nav.url == page.url %}navbar-active{% endif %}">
+ class="{% if nav.url == page.url %}navbar-active{% endif %}">
73
{{nav.title}}
74
</a>
75
</li>
_sass/components/_navbar.scss
@@ -74,6 +74,9 @@
float: right;
padding: 0;
76
margin: 0;
77
+ .navbar-active {
78
+ color: $dark-orange;
79
+ }
80
@media (max-width: 767px) {
81
margin-top: 10px;
82
float: left;
@@ -93,7 +96,7 @@
93
96
color: $black;
94
97
}
95
98
a:hover {
- color: $orange;
99
100
text-decoration: none;
101
102
0 commit comments