Skip to content

Instantly share code, notes, and snippets.

@robertmagnusson
Created June 16, 2014 07:14
Show Gist options
  • Save robertmagnusson/577ca419a450f4fa0419 to your computer and use it in GitHub Desktop.
Save robertmagnusson/577ca419a450f4fa0419 to your computer and use it in GitHub Desktop.
Center 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