123456789101112131415161718 |
- @each $breakpoint in map-keys($grid-breakpoints) {
-
- @include media-breakpoint-up($breakpoint) {
- $infix: breakpoint-infix($breakpoint, $grid-breakpoints);
-
- @each $key, $utility in $utilities-alt {
-
-
- @if type-of($utility) == "map" and (map-get($utility, responsive) or $infix == "") {
- @include generate-utility($utility, $infix);
- }
- }
- }
- }
|