mirror of
https://github.com/twbs/bootstrap.git
synced 2025-01-21 13:52:17 +01:00
Fix the min breakpoint in media-breakpoint-between
This commit is contained in:
parent
cd3507aba6
commit
2f4ddb8ed9
@ -78,7 +78,7 @@
|
|||||||
// Media that spans multiple breakpoint widths.
|
// Media that spans multiple breakpoint widths.
|
||||||
// Makes the @content apply between the min and max breakpoints
|
// Makes the @content apply between the min and max breakpoints
|
||||||
@mixin media-breakpoint-between($lower, $upper, $breakpoints: $grid-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);
|
$max: breakpoint-max($upper, $breakpoints);
|
||||||
|
|
||||||
@media (min-width: $min) and (max-width: $max) {
|
@media (min-width: $min) and (max-width: $max) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user