mirror of
https://gitlab.com/veilid/veilid-dot-com.git
synced 2025-02-12 05:21:21 -05: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
|