cycat-project-website/_sass/bootstrap/utilities/_float.scss

12 lines
376 B
SCSS
Raw Normal View History

2020-08-23 12:01:06 +02:00
// stylelint-disable declaration-no-important
2018-12-09 08:21:01 +01:00
@each $breakpoint in map-keys($grid-breakpoints) {
@include media-breakpoint-up($breakpoint) {
$infix: breakpoint-infix($breakpoint, $grid-breakpoints);
2020-08-23 12:01:06 +02:00
.float#{$infix}-left { float: left !important; }
.float#{$infix}-right { float: right !important; }
.float#{$infix}-none { float: none !important; }
2018-12-09 08:21:01 +01:00
}
}