💻💪 Add responsive sizing classes

This commit is contained in:
Dan Jones 2018-02-05 19:23:04 -06:00
commit 490da8b679
2 changed files with 12 additions and 0 deletions

View 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;
}
}
}
}
}

View file

@ -1,6 +1,7 @@
@import 'bootstrap';
@import 'font-awesome-sprockets';
@import 'font-awesome';
@import 'responsive_sizes';
.rounded-large {
border-radius: 1rem;