19 lines
455 B
SCSS
19 lines
455 B
SCSS
// stylelint-disable declaration-no-important
|
|
|
|
@each $breakpoint in map-keys($grid-breakpoints) {
|
|
@include media-breakpoint-up($breakpoint) {
|
|
$infix: breakpoint-infix($breakpoint, $grid-breakpoints);
|
|
|
|
.float#{$infix}-left {
|
|
float: right !important;
|
|
}
|
|
|
|
.float#{$infix}-right {
|
|
float: left !important;
|
|
}
|
|
|
|
.float#{$infix}-none {
|
|
float: none !important;
|
|
}
|
|
}
|
|
} |