posts/plugins/problems/scss/mixins/_clearfix.scss

9 lines
111 B
SCSS

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