9 lines
111 B
SCSS
Executable File
9 lines
111 B
SCSS
Executable File
// Clearfix mixin
|
|
@mixin clearfix() {
|
|
&::after {
|
|
clear: both;
|
|
content: "";
|
|
display: table;
|
|
}
|
|
}
|