Skip to content

Instantly share code, notes, and snippets.

@harbirchahal
Created June 2, 2022 18:55
Show Gist options
  • Save harbirchahal/b430f485d847f27978a160c4d908a6af to your computer and use it in GitHub Desktop.
Save harbirchahal/b430f485d847f27978a160c4d908a6af to your computer and use it in GitHub Desktop.
Mixins in scss styles
@mixin flex($dir: row, $justify: start, $align: start, $wrap: wrap) {
display: flex;
@if $dir != row {
flex-direction: $dir;
}
@if $wrap != wrap {
flex-wrap: $wrap;
}
@if $justify != start {
justify-content: $justify;
}
@if $align != start {
align-items: $align;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment