_clearfix.scss 93 B

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