-
-
Save dwayne/8582e980747e85e416d2 to your computer and use it in GitHub Desktop.
Vertically center anything.
This file contains 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
// Assumes Bourbon - See http://bourbon.io/docs/#transform | |
// To see it in action, check out http://codepen.io/dwayne/pen/gjDGx | |
@mixin vertical-center { | |
position: relative; | |
top: 50%; | |
@include transform(translateY(-50%)); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment