_clearfix.scss 93 B

1234567
  1. @mixin clearfix() {
  2. &::after {
  3. display: block;
  4. clear: both;
  5. content: "";
  6. }
  7. }