The font-size of links in a top-bar section was hard set to 13px and did not respect any overrides set by the user.
width: 100%;
padding: 12px 0 12px $topbar-height / 3;
color: $topbar-link-color;
- font-size: emCalc(13px);
+ font-size: $topbar-link-font-size;
font-weight: bold;
background: $topbar-dropdown-bg;
&.button {
background: $primary-color;
- font-size: emCalc(13px);
+ font-size: $topbar-link-font-size;
&:hover {
background: darken($primary-color, 10%);
}
}
-}
\ No newline at end of file
+}