Skip to content

Instantly share code, notes, and snippets.

@rafaelmaeuer
Created December 11, 2016 19:50
Show Gist options
  • Save rafaelmaeuer/8543f29d770b65300afa4568a5249d5b to your computer and use it in GitHub Desktop.
Save rafaelmaeuer/8543f29d770b65300afa4568a5249d5b to your computer and use it in GitHub Desktop.
Sass Mixin Centering Elements From https://css-tricks.com/snippets/sass/centering-mixin/
@mixin centerer {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment