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

17 lines
370 B
SCSS

@mixin halfcolumn() {
@media (min-width: breakpoint-min(sm)) {
@include make-col(6);
}
@media (max-width: breakpoint-max(xs)) {
@include make-col(12);
}
}
@mixin col($sm-width, $xs-width) {
@media (min-width: breakpoint-min(sm)) {
@include make-col($sm-width);
}
@media (max-width: breakpoint-max(xs)) {
@include make-col($xs-width);
}
}