To fix issue #4209, I've added the same sort of exclude as already used in _top-bar.scss to stop styles being passed to child buttons.
margin: $side-nav-list-margin;
font-size: $font-size;
- a {
+ a:not(.button) {
display: block;
color: $link-color;
}
- &.active > a:first-child {
+ &.active > a:first-child:not(.button) {
color: $side-nav-link-color-active;
font-weight: $side-nav-font-weight;
font-family: $side-nav-active-font-family;
@if $include-html-nav-classes {
.side-nav { @include side-nav; }
}
-}
\ No newline at end of file
+}