summaryrefslogtreecommitdiff
path: root/src/sass/bootstrap4/mixins/_clearfix.scss
blob: d0ae125f3d46a618f031df27a2db57ffe9f778d3 (plain)
1
2
3
4
5
6
7
@mixin clearfix() {
  &::after {
    content: "";
    display: table;
    clear: both;
  }
}