Files
2019-01-07 11:43:39 +01:00

9 lines
111 B
SCSS

// Clearfix mixin
@mixin clearfix() {
&::after {
clear: both;
content: "";
display: table;
}
}