DanWebb
11/27/2014 - 7:38 PM

Contain floating elements from: http://css-tricks.com/snippets/css/clear-fix/

Contain floating elements from: http://css-tricks.com/snippets/css/clear-fix/

.group:after {
  content: "";
  display: table;
  clear: both;
}

/* or */

@mixin clearfix {
  &::after {
    content: '';
    display: table;
    clear: both;
  }
}