Skip to content

Instantly share code, notes, and snippets.

@searleb
Created February 24, 2016 23:05
Show Gist options
  • Save searleb/15629e6195510492149a to your computer and use it in GitHub Desktop.
Save searleb/15629e6195510492149a to your computer and use it in GitHub Desktop.
A collection of SCSS helpers
/**
* Add this to a bootstrap .row to add flex.
* This will cause child .col-* elements to expand to equal hights
*/
.row-flex {
@media #{$media-sm}{
display: -webkit-box;
display: -webkit-flex;
display: flex;
-webkit-flex-wrap: wrap;
flex-wrap: wrap;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment