Sass SASS Mixins with Default Parameters Using Maps Creating mixins with default parameters is very easy in SASS using maps. Let's say we have a mixin called button size that takes a configuration map called $in: @mixin button-size($in) {} And let's
Gulp Handling errors when working with SASS, Watch, Plumber and Gulp When working with Gulp, you need to return streams as one of the days to set up task dependencies. Something like this: gulp.task('sass', function() { return gulp.src("sass/main.scss&