website/_sass/bootstrap/scss/mixins/_clearfix.scss
2024-01-20 16:06:39 +01:00

8 lines
93 B
SCSS
Executable file

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