Skip to content

Instantly share code, notes, and snippets.

@yoSteve
Last active July 15, 2020 15:56
Show Gist options
  • Save yoSteve/3f701ead4da6f4a2f69cb01bc189a453 to your computer and use it in GitHub Desktop.
Save yoSteve/3f701ead4da6f4a2f69cb01bc189a453 to your computer and use it in GitHub Desktop.
A Sassy Mixin for applying CSS Flexbox. Centres the content by default.
@mixin flex($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