//
// The clearfix hack
//

// https://css-tricks.com/snippets/css/clear-fix/

@mixin clearfix-both {
    &:before,
    &:after {
        content: " ";
        display: table;
        clear: both;
    }
}

@mixin unclearfix-both {
    &:before,
    &:after {
        content: none;
    }
}
