danielrayjones/_assets/css/responsive_sizes.scss
2018-02-05 19:23:04 -06:00

11 lines
269 B
SCSS

@each $prop, $abbrev in (width: w, height: h) {
@each $bpname,$bpsize in $grid-breakpoints {
@media (min-width: $bpsize) {
@each $size, $length in $sizes {
.#{$abbrev}-#{$bpname}-#{$size} {
#{$prop}: $length;
}
}
}
}
}