Files
blog/user/plugins/problems/scss/mixins/_clearfix.scss
Loïc Guibert 66dafc36c3 init
2022-09-30 20:02:02 +01:00

9 lines
111 B
SCSS
Executable File

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