mirror of
https://github.com/Hopiu/bootstrap.git
synced 2026-04-09 23:40:58 +00:00
Fix sass map navbar-toggleable
Follow up to 6e8ce0c7dc. Uses the breakpoint-next mixin to snag the next breakpoint in the media query for proper styling.
This commit is contained in:
parent
6e8ce0c7dc
commit
b35e77deaf
1 changed files with 2 additions and 1 deletions
|
|
@ -133,9 +133,10 @@
|
|||
// scss-lint:disable ImportantRule
|
||||
.navbar-toggleable {
|
||||
@each $breakpoint in map-keys($grid-breakpoints) {
|
||||
$next: breakpoint-next($breakpoint, $grid-breakpoints);
|
||||
&-#{$breakpoint} {
|
||||
@include clearfix;
|
||||
@include media-breakpoint-up($breakpoint) {
|
||||
@include media-breakpoint-up($next) {
|
||||
display: block !important;
|
||||
|
||||
.navbar-brand {
|
||||
|
|
|
|||
Loading…
Reference in a new issue