Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/bootstrap-rubygem.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGleb Mazovetskiy <glex.spb@gmail.com>2017-08-11 08:33:11 +0300
committerGleb Mazovetskiy <glex.spb@gmail.com>2017-08-11 08:33:11 +0300
commit6bce891eed4888edef4067d0a239801f54f946c6 (patch)
tree128bb3174f4be3872cc67b6dde9a2f82501f7195 /assets/stylesheets/bootstrap/mixins/_breakpoints.scss
parent8f038dc5cfebd6313436471c580fde5379ef291a (diff)
rake update[v4.0.0-beta]
Diffstat (limited to 'assets/stylesheets/bootstrap/mixins/_breakpoints.scss')
-rw-r--r--assets/stylesheets/bootstrap/mixins/_breakpoints.scss2
1 files changed, 1 insertions, 1 deletions
diff --git a/assets/stylesheets/bootstrap/mixins/_breakpoints.scss b/assets/stylesheets/bootstrap/mixins/_breakpoints.scss
index 9a374fe..8d7378d 100644
--- a/assets/stylesheets/bootstrap/mixins/_breakpoints.scss
+++ b/assets/stylesheets/bootstrap/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) {