Commit 2f4ddb8e authored by lucascono's avatar lucascono
Browse files

Fix the min breakpoint in media-breakpoint-between

parent cd3507ab
Showing with 1 addition and 1 deletion
+1 -1
......@@ -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) {
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment