// clearfix
// source: http://cssmojo.com/latest_new_clearfix_so_far/
@mixin clearfix {
  &::after {
    clear: both;
    content: '';
    display: table;
  }
}
