Collection of Sass mixins and functions.
git clone [email protected]:otsukasatoshi/sass-library.git
yarn install
gulp
yarn lint
yarn format
.el {
background-color: $bg-color;
@include box(200px);
@include center(xy);
}
.el {
background-color: #cc6699;
width: 200px;
height: 200px;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
open ./dist/index.html
in your browser.