1
0
Fork 0
Manager/style/default/vendor/bootstrap/scss/utilities/_float.scss

12 lines
376 B
SCSS
Raw Normal View History

2020-06-03 15:31:18 +00:00
// 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; }
}
}