mirror of
https://github.com/twbs/bootstrap.git
synced 2024-11-29 11:24:18 +01:00
83b49aa688
Co-authored-by: XhmikosR <xhmikosr@gmail.com>
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
|