Created
August 15, 2023 14:46
-
-
Save nathan-hyan/39c04a78a79d45debb3b853c723fe307 to your computer and use it in GitHub Desktop.
Mixin for applying 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($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