permanent
clone your own copy | download snapshot

Snapshots | iceberg

Inside this repository

_clearfix.scss
text/plain

Download raw (111 bytes)

// Clearfix mixin
@mixin clearfix() {
  &::after {
    clear: both;
    content: "";
    display: table;
  }
}