can sass mixin be nested? code example
Example 1: sass mixin
@mixin transform($property) {
-webkit-transform: $property;
-ms-transform: $property;
transform: $property;
}
.box { @include transform(rotate(30deg)); }
Example 2: sass
npm uninstall node-sass
npm install node-sass@4.14.1