Created
September 25, 2020 17:28
-
-
Save Voloshin-Sergei/83d5fac126e55fd62ae16f1a7fa98ca9 to your computer and use it in GitHub Desktop.
mixin flex
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@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