Sass Mixin Library is a simple, lightweight, yet powerful mixin library for Sass. Save time, type less, and keep your code clean.
Get StartedCopy the _mixins.scss
file and directory to your project, then add:
@import "mixins";
Example implementations can be found in test.scss
.
.clearfix {
@include clearfix;
}
.clearfix {
*zoom: 1;
}
.clearfix:before, .clearfix:after {
content: " ";
display: table;
}
.clearfix:after {
clear: both;
}