Created
February 7, 2014 05:32
-
-
Save HipsterBrown/8857784 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//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