Collection of mixins to add vendor prefixes directly in sass/scss.
npm install sass-prefix-mixins
bower install sass-prefix-mixins
Add the scss file to your your own scss file:
@import "./../bower_components/sass-autoprefixer/scss/prefixes";
replace your scss statement with its sass-prefix-mixins mixin, e.g. replace
.your-class {
flex-flow: row wrap;
}
with
.your-class {
@include vp-flex-flow(row wrap);
}
the resulting css will look like
.your-class {
-webkit-flex-flow: row wrap;
-moz-flex-flow: row wrap;
-ms-flex-flow: row wrap;
flex-flow: row wrap;
}
Check the source code to see which mixins exist or help me and update this Readme
- Bootstrap 4 Backward - Bootstrap 4 Version using sass-autoprefixer to compile bootstrap 4 directly in your project.