0byt3m1n1
Path:
/
data
/
applications
/
aps.bak
/
wordpress
/
plugins-bak
/
jetpack
/
scss
/
_utilities
/
[
Home
]
File: _clearings.scss
// ========================================================================== // 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; }