/* ==========================================================================
 * Clearfix
 * ========================================================================== */

@define-mixin mds-m-clearfix {
  &::before,
  &::after {
    content: '';
    display: table;
  }

  &::after {
    clear: both;
  }
}
