-
-
Save pavelbinar/01521316c4f528eac2b0 to your computer and use it in GitHub Desktop.
SASS: mixin for absolute center position
This file contains hidden or 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
@mixin center($width, $height) { | |
position: absolute; | |
left: 50%; | |
top: 50%; | |
height: $height; | |
width: $width; | |
margin-left: - $width / 2; | |
margin-top: - $height / 2; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment