This repository has been archived on 2020-05-08. You can view files and clone it, but cannot push or open issues or pull requests.
understrap/src/sass/bootstrap4/mixins/_clearfix.scss

8 lines
93 B
SCSS

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