For the complete documentation index, see llms.txt. This page is also available as Markdown.

clearfix()

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

Last updated