You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
376 B
11 lines
376 B
// 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: left !important; } |
|
.float#{$infix}-right { float: right !important; } |
|
.float#{$infix}-none { float: none !important; } |
|
} |
|
}
|
|
|