Skip to content

Instantly share code, notes, and snippets.

@HipsterBrown
Created February 7, 2014 05:32
Show Gist options
  • Save HipsterBrown/8857784 to your computer and use it in GitHub Desktop.
Save HipsterBrown/8857784 to your computer and use it in GitHub Desktop.
//Fairly Simple but Effective Flexbox Mixin w/ no fallback cause those suck
@mixin flexy($direction: row, $justify: center, $align: center) {
display: flex;
flex-direction: $direction;
justify-content: $justify;
align-items: $align;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment