mirror of
https://github.com/twbs/bootstrap.git
synced 2024-12-01 13:24:25 +01:00
14 lines
310 B
SCSS
14 lines
310 B
SCSS
|
@each $breakpoint in map-keys($grid-breakpoints) {
|
||
|
@include media-breakpoint-up($breakpoint) {
|
||
|
.float-#{$breakpoint}-left {
|
||
|
@include float-left();
|
||
|
}
|
||
|
.float-#{$breakpoint}-right {
|
||
|
@include float-right();
|
||
|
}
|
||
|
.float-#{$breakpoint}-none {
|
||
|
float: none !important;
|
||
|
}
|
||
|
}
|
||
|
}
|