Something went wrong on our end
-
Tyler Struyk authoredTyler Struyk authored
_mixins.clearfix.scss 274 B
// @file
// Clearfix
@mixin clearfix($important: false) {
&::after {
clear: both iff($important, !important);
content: '' iff($important, !important);
display: table iff($important, !important);
}
}
@mixin clearfix-important {
@include clearfix(true);
}