diff --git a/client/components/Nav.jsx b/client/components/Nav.jsx
index 987ba11d..253146b0 100644
--- a/client/components/Nav.jsx
+++ b/client/components/Nav.jsx
@@ -530,12 +530,16 @@ class Nav extends React.PureComponent {
{ __process.env.LOGIN_ENABLED && !this.props.user.authenticated &&
}
{ __process.env.LOGIN_ENABLED && this.props.user.authenticated &&
diff --git a/client/styles/components/_nav.scss b/client/styles/components/_nav.scss
index 707636bd..30496400 100644
--- a/client/styles/components/_nav.scss
+++ b/client/styles/components/_nav.scss
@@ -51,10 +51,6 @@
padding-right: #{15 / $base-font-size}rem;
}
-.nav__item-header {
- margin-right: #{5 / $base-font-size}rem;
-}
-
.nav__item:hover {
.nav__item-header {
@include themify() {
@@ -69,6 +65,16 @@
}
}
+.nav__item-header:hover {
+ @include themify() {
+ color: getThemifyVariable('nav-hover-color');
+ }
+}
+
+.nav__item-header-triangle {
+ margin-left: #{5 / $base-font-size}rem;
+}
+
.nav__dropdown {
@include themify() {
background-color: map-get($theme-map, 'modal-background-color');