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

19 lines
523 B

// ---------------------------------------------------------
// @Responsive Suffix Generator
// ---------------------------------------------------------
// Mixin used to generate responsive suffixes for classes (i.e. m-10@sm+).
@mixin generateResponsive() {
@each $breakpoint in $breakpoints {
$breakpointAlias : nth($breakpoint, 1) !global;
$breakpointCondition : nth($breakpoint, 2);
@include mediaQueryCondition($breakpointAlias) {
@content;
}
$breakpointAlias: null !global;
}
}