Skip to content

Instantly share code, notes, and snippets.

@kareemkibue
Created July 12, 2017 11:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kareemkibue/1e26c562ddb7c67185ed3fae14ca7fa9 to your computer and use it in GitHub Desktop.
Save kareemkibue/1e26c562ddb7c67185ed3fae14ca7fa9 to your computer and use it in GitHub Desktop.
Absolute center items SASS Mixin
@mixin center($axis:null) {
@if $axis==vertical {
top: 0;
bottom: 0;
margin: auto;
}
@else if $axis==horizontal {
left: 0;
right: 0;
margin: auto;
}
@else {
top: 0;
bottom: 0;
left: 0;
right: 0;
margin: auto;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment