diff options
| author | Mark Otto <[email protected]> | 2016-07-24 00:46:29 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2016-07-24 00:49:08 -0700 |
| commit | 15f522fd4ae3fe7933d526f045b0b2df22a35291 (patch) | |
| tree | 38f9c45333acf1d85abe55973aedb60ac554b306 | |
| parent | 7fd00263e35f891bfc792f9dd12c17a5025cd93c (diff) | |
| download | bootstrap-15f522fd4ae3fe7933d526f045b0b2df22a35291.tar.xz bootstrap-15f522fd4ae3fe7933d526f045b0b2df22a35291.zip | |
Fixes #17990: clear the floats within .navbar-toggleable-* to avoid funky animation on close
| -rw-r--r-- | scss/_navbar.scss | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/scss/_navbar.scss b/scss/_navbar.scss index 64409f715..6e563d439 100644 --- a/scss/_navbar.scss +++ b/scss/_navbar.scss @@ -132,16 +132,19 @@ // Custom override for .navbar-toggleable { &-xs { + @include clearfix; @include media-breakpoint-up(sm) { display: block !important; } } &-sm { + @include clearfix; @include media-breakpoint-up(md) { display: block !important; } } &-md { + @include clearfix; @include media-breakpoint-up(lg) { display: block !important; } |
