@mixin clearfix()

Description

A small, unobtrusive clearfix for float containers.

Example

scss
body {
  @include clearfix;
}
css compiled
body::after {
  clear: both;
  content: ' ';
  display: block;
}