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