8 lines
106 B
SCSS
8 lines
106 B
SCSS
@mixin clearfix {
|
|
&:after {
|
|
content: "";
|
|
display: table;
|
|
clear: both;
|
|
}
|
|
}
|