Files
2020-06-11 16:42:43 +02:00

9 lines
111 B
SCSS

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