Skip to content

Instantly share code, notes, and snippets.

@9ete
Last active December 14, 2021 19:23
Show Gist options
  • Save 9ete/8328945e412fda9617d9a6a165632dd3 to your computer and use it in GitHub Desktop.
Save 9ete/8328945e412fda9617d9a6a165632dd3 to your computer and use it in GitHub Desktop.
Short Dynamic Flexbox Mixin, only pass in and account for what you need...
@mixin flex($flex-styles: ()) {
display: flex;
@each $flex-rule, $flex-value in $flex-styles {
#{$flex-rule}: #{$flex-value};
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment