9 lines
220 B
SCSS
9 lines
220 B
SCSS
@mixin RV-Utils__ElementAmount($-up-to: 20) {
|
|
@for $i from 1 through $-up-to {
|
|
|
|
*:first-child:nth-last-child(#{$i}),
|
|
*:first-child:nth-last-child(#{$i})~* {
|
|
@content($i);
|
|
}
|
|
}
|
|
} |