rendu/user/themes/steak/scss/spectre/mixins/_clearfix.scss
2026-01-16 16:49:04 +01:00

9 lines
111 B
SCSS
Executable File

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