You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
715 B

// -------------------------------------------
// Extended width & height utils
// -------------------------------------------
// Respinsive row widths/height variations (5-100% in steps of 5)
// @see: elements-spacers.htm
// -------------------------------------------
@each $breakpoint in map-keys($grid-breakpoints) {
@each $prop, $abbrev in (width: w, height: h) {
@include media-breakpoint-up($breakpoint) {
$infix: breakpoint-infix($breakpoint, $grid-breakpoints);
@each $size, $length in $sizes {
.#{$abbrev}#{$infix}-#{$size} {
#{$prop}: $length !important;
}
}
.#{$abbrev}#{$infix}-auto {
#{$prop}: auto !important;
}
}
}
}