diff options
| author | lucascono <[email protected]> | 2017-08-06 22:59:14 -0300 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2017-08-08 00:07:42 -0700 |
| commit | 08b89972c52d55f5e7d2d039570d098a1f51cb7f (patch) | |
| tree | ba015949895850d54c5ba72a034e6e1ce1170dca | |
| parent | 2cd2301e7a512e2e77ddcfcdec6d35ab25e326b6 (diff) | |
| download | bootstrap-08b89972c52d55f5e7d2d039570d098a1f51cb7f.tar.xz bootstrap-08b89972c52d55f5e7d2d039570d098a1f51cb7f.zip | |
Fix the min breakpoint in media-breakpoint-between
| -rw-r--r-- | scss/mixins/_breakpoints.scss | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scss/mixins/_breakpoints.scss b/scss/mixins/_breakpoints.scss index 9a374fee6..8d7378d36 100644 --- a/scss/mixins/_breakpoints.scss +++ b/scss/mixins/_breakpoints.scss @@ -78,7 +78,7 @@ // Media that spans multiple breakpoint widths. // Makes the @content apply between the min and max breakpoints @mixin media-breakpoint-between($lower, $upper, $breakpoints: $grid-breakpoints) { - $min: breakpoint-max($lower, $breakpoints); + $min: breakpoint-min($lower, $breakpoints); $max: breakpoint-max($upper, $breakpoints); @media (min-width: $min) and (max-width: $max) { |
