radiodraws
11/30/2016 - 5:16 PM

clear mixin sass

clear mixin sass

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