mirror of
https://github.com/fmtlib/fmt.git
synced 2024-12-04 15:20:06 +00:00
10 lines
147 B
SCSS
10 lines
147 B
SCSS
// scss-docs-start clearfix
|
|
@mixin clearfix() {
|
|
&::after {
|
|
display: block;
|
|
clear: both;
|
|
content: "";
|
|
}
|
|
}
|
|
// scss-docs-end clearfix
|