Skip to content

Instantly share code, notes, and snippets.

@Voloshin-Sergei
Created September 25, 2020 17:28
Show Gist options
  • Save Voloshin-Sergei/83d5fac126e55fd62ae16f1a7fa98ca9 to your computer and use it in GitHub Desktop.
Save Voloshin-Sergei/83d5fac126e55fd62ae16f1a7fa98ca9 to your computer and use it in GitHub Desktop.
mixin flex
@mixin flex($direction: row, $justify-content: center, $align-items: center, $wrap: wrap) {
display: $flex;
flex-direction: $direction;
align-items: $align-items;
justify-content: $justify-content;
flex-wrap: $wrap;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment