Files
anissah/user/plugins/problems/scss/mixins/_clearfix.scss
T
2019-01-16 16:23:31 +01:00

9 lines
111 B
SCSS

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