Skip to content

Instantly share code, notes, and snippets.

View austinhinderer's full-sized avatar

Austin Hinderer austinhinderer

View GitHub Profile
@austinhinderer
austinhinderer / Vertical Center SASS Mixin
Created September 19, 2013 02:39
This SASS mixin will vertically center a child element inside its parent.
@mixin vertical-center($childSelector) {
& {
display: table;
width: 100%;
#{$childSelector} {
display: table-cell;
text-align: center;
vertical-align: middle;
}