mirror of
https://github.com/Hopiu/bootstrap.git
synced 2026-03-17 21:20:23 +00:00
* Remove comment that duplicated some code * Use transition mixin whenever possible * Create a new function to reduce duplication * Use the new `breakpoint-infix` method
9 lines
320 B
SCSS
9 lines
320 B
SCSS
@each $breakpoint in map-keys($grid-breakpoints) {
|
|
@include media-breakpoint-up($breakpoint) {
|
|
$infix: breakpoint-infix($breakpoint, $grid-breakpoints);
|
|
|
|
.float#{$infix}-left { @include float-left; }
|
|
.float#{$infix}-right { @include float-right; }
|
|
.float#{$infix}-none { @include float-none; }
|
|
}
|
|
}
|