aboutsummaryrefslogtreecommitdiffstats
path: root/src/styles/abstracts/placeholders/_clearfix.scss
blob: 2a4f2629a0cd287f01f8655aecba24808dac3f1d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/// Set up clearfix
%clearfix {
  *zoom: 1;

  &::before,
  &::after {
    content: " ";
    display: table;
  }

  &::after {
    clear: both;
  }
}