2016-09-26 00:54:10 -07:00
|
|
|
@each $breakpoint in map-keys($grid-breakpoints) {
|
|
|
|
@include media-breakpoint-up($breakpoint) {
|
2016-10-31 21:27:56 -07:00
|
|
|
$min: breakpoint-min($breakpoint, $grid-breakpoints);
|
|
|
|
|
|
|
|
@if $min {
|
|
|
|
// everything else
|
2016-11-27 23:23:12 -07:00
|
|
|
.float-#{$breakpoint}-left { @include float-left; }
|
2016-11-27 16:18:46 -07:00
|
|
|
.float-#{$breakpoint}-right { @include float-right; }
|
2016-11-27 23:23:12 -07:00
|
|
|
.float-#{$breakpoint}-none { @include float-none; }
|
2016-10-31 21:27:56 -07:00
|
|
|
} @else {
|
|
|
|
// xs
|
2016-11-27 23:23:12 -07:00
|
|
|
.float-left { @include float-left; }
|
2016-10-31 21:27:56 -07:00
|
|
|
.float-right { @include float-right; }
|
2016-11-27 23:23:12 -07:00
|
|
|
.float-none { @include float-none; }
|
2016-09-26 00:54:10 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|