Problem/Motivation
In themes/bs_bootstrap/sass/components/partials/_navbar-second-level-dropdown.scss we use
@include media-breakpoint-up($responsive-break)
for big screen second level dropdown navigation rules.
Instead of that we should use
@if breakpoint-max($navbar-collapse-responsive-break) != null {
@include media-breakpoint-up($navbar-collapse-responsive-break) {
Like we are using on other places.
| Comment | File | Size | Author |
|---|---|---|---|
| #2 | fix-breakpoint-3284178-2.patch | 1.37 KB | pivica |
Comments
Comment #2
pivica commentedHere is a patch.
Comment #3
pivica commentedComment #5
pivica commentedCommitted.