1@mixin clearfix() {
2  *zoom:1;
3  &:before, &:after {
4    content: "";
5    display: table;
6  }
7  &:after {
8    clear: both;
9  }
10}
11
12@mixin mobilefix() {
13  @include respond(all-phones) {
14    &:before, &:after {
15      content: " ";
16      display: table;
17    }
18    &:after {
19      clear: both;
20    }
21    &:last-child {
22      float: none;
23    }
24  }
25}