aleut.tools.clearfix
v1.0.1
Published
Small clearfixing mixin for the aleutcss framework (based on Harry Roberts inuitcss framework)
Downloads
13
Readme
Clearfix
The aleutcss clearfix
module contains a useful mixin for adding clearfix to your classes.
Install using npm:
$ npm install --save-dev aleut.tools-clearfix
Usage
Basic usage of the mixins in a SCSS-file:
.foo {
@include clearfix;
}
This yields:
.foo::after {
content: "";
display: table;
clear: both;
}