Skip to content

Instantly share code, notes, and snippets.

@abiriadev
Created July 8, 2021 17:33
Show Gist options
  • Save abiriadev/46a91db0d449e7f77cdf8dfd362e2f23 to your computer and use it in GitHub Desktop.
Save abiriadev/46a91db0d449e7f77cdf8dfd362e2f23 to your computer and use it in GitHub Desktop.
flex center mixin
@mixin center($inline: 'no') {
@if ($inline == 'inline') {
display: inline-flex;
} @else {
display: flex;
}
justify-content: center;
align-items: center;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment