mirror of
https://github.com/twbs/bootstrap.git
synced 2024-11-29 11:24:18 +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;
|
|
}
|
|
}
|
|
}
|