Skip to content

Instantly share code, notes, and snippets.

@nathan-hyan
Created August 15, 2023 14:46
Show Gist options
  • Save nathan-hyan/39c04a78a79d45debb3b853c723fe307 to your computer and use it in GitHub Desktop.
Save nathan-hyan/39c04a78a79d45debb3b853c723fe307 to your computer and use it in GitHub Desktop.
Mixin for applying flex
@mixin flex($justify: center, $align: center, $direction: row) {
display: flex;
flex-direction: $direction;
align-items: $align;
justify-content: $justify;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment