💻💪 Add responsive sizing classes
This commit is contained in:
parent
2f3e58090b
commit
490da8b679
2 changed files with 12 additions and 0 deletions
11
_assets/css/responsive_sizes.scss
Normal file
11
_assets/css/responsive_sizes.scss
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
@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;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue