mirror of
https://github.com/twbs/bootstrap.git
synced 2024-12-02 14:24:19 +01:00
ffaad0a819
* Explore responsive display utils, but with a twist: lowest breakpoint has no breakpoint modifier in the class name * make floats use the same format, add float-none mixin
20 lines
588 B
SCSS
20 lines
588 B
SCSS
@each $breakpoint in map-keys($grid-breakpoints) {
|
|
@include media-breakpoint-up($breakpoint) {
|
|
$min: breakpoint-min($breakpoint, $grid-breakpoints);
|
|
|
|
@if $min {
|
|
// everything else
|
|
@media (min-width: $min) {
|
|
.float-#{$breakpoint}-left { @include float-left; }
|
|
.float-#{$breakpoint}-right { @include float-right; }
|
|
.float-#{$breakpoint}-none { @include float-none; }
|
|
}
|
|
} @else {
|
|
// xs
|
|
.float-left { @include float-left; }
|
|
.float-right { @include float-right; }
|
|
.float-none { @include float-none; }
|
|
}
|
|
}
|
|
}
|