2019-01-25 04:51:36 +08:00
|
|
|
// stylelint-disable declaration-no-important
|
|
|
|
|
2016-09-26 15:54:10 +08:00
|
|
|
@each $breakpoint in map-keys($grid-breakpoints) {
|
|
|
|
@include media-breakpoint-up($breakpoint) {
|
2016-11-29 05:23:59 +08:00
|
|
|
$infix: breakpoint-infix($breakpoint, $grid-breakpoints);
|
2016-11-01 12:27:56 +08:00
|
|
|
|
2019-01-25 04:51:36 +08:00
|
|
|
.float#{$infix}-left { float: left !important; }
|
|
|
|
.float#{$infix}-right { float: right !important; }
|
|
|
|
.float#{$infix}-none { float: none !important; }
|
2016-09-26 15:54:10 +08:00
|
|
|
}
|
|
|
|
}
|