Skip to content
Snippets Groups Projects
_00-mixins.scss 230 B
Newer Older
M Miller's avatar
M Miller committed
// General Mixins

/// Mixin - Clearfix.
/// Adds clearfix based on http://bourbon.io/docs/#clearfix
/// use example =   @include cleafix

@mixin clearfix {
  &::after {
    clear: both;
    content: '';
    display: table;
  }
}