8 lines
91 B
CSS

@mixin clearfix {
&::after {
content: '';
display: table;
clear: both;
}
}