mirror of
https://github.com/twbs/bootstrap.git
synced 2022-11-09 12:25:43 -05:00
83b49aa688
Co-authored-by: XhmikosR <xhmikosr@gmail.com>
9 lines
147 B
SCSS
9 lines
147 B
SCSS
// scss-docs-start clearfix
|
|
@mixin clearfix() {
|
|
&::after {
|
|
display: block;
|
|
clear: both;
|
|
content: "";
|
|
}
|
|
}
|
|
// scss-docs-end clearfix
|