////
/// (c) hidoo | MIT License
/// @group box features
////

/// apply clearfix
///
/// @example scss - scss inputs
///   .selector {
///     @include mixin.box-apply-clearfix();
///   }
///
/// @example css - css outputs
///   .selector::before, .selector::after {
///     content: "";
///     display: table;
///   }
///   .selector::after {
///     clear: both;
///   }
///
@mixin apply-clearfix() {
  &::before,
  &::after {
    content: "";
    display: table;
  }

  &::after {
    clear: both;
  }
}
