////
/// @group 99-clearfix
////

/// Hebt den Float im Container auf.
@mixin clearfix() {
    display: flow-root;
    @supports not (display: flow-root) {
        @include _legacy-clearfix();
        display: block;
    }
}

/// Hebt den Float im Container auf.
/// @deprecated
@mixin _legacy-clearfix() {
    &::after {
        content: "";
        display: table;
        clear: both;
    }
}