mirror of
https://github.com/Hopiu/bootstrap.git
synced 2026-03-24 16:30:23 +00:00
Fix the min breakpoint in media-breakpoint-between
This commit is contained in:
parent
cd3507aba6
commit
2f4ddb8ed9
1 changed files with 1 additions and 1 deletions
|
|
@ -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) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue