This repository has been archived on 2023-08-16. You can view files and clone it, but cannot push or open issues or pull requests.
Omphaloskepsis/plugins/jetpack/scss/_utilities/_clearings.scss

22 lines
381 B
SCSS
Raw Normal View History

2018-03-21 18:19:20 +00:00
// ==========================================================================
// Clearings
//
// You can either use the mixin or @extend .clear.
// ==========================================================================
// The mixin
@mixin clearfix() {
&:before, &:after {
content: "";
display: table;
}
&:after {
clear: both;
}
}
%clearfix {
@include clearfix;
}