11 lines
269 B
SCSS
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;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|