2022-12-02 14:54:26 +01:00

21 lines
357 B
SCSS

@import '../../abstracts/variables';
$count: 0;
@mixin order ($breakpoint) {
.order-#{$breakpoint}first {
order: -9999 !important;
}
.order-#{$breakpoint}last {
order: 9999 !important;
}
@while $count < 13 {
.order-#{$breakpoint}#{$count} {
order: $count !important;
}
$count: $count + 1;
}
}
@include order("");