rachelleyen
9/14/2017 - 3:57 AM

Vertical align (position)

Block vertical centering helper Require height to be known. Using position.

 .foo {
    @include center-h(42px);
  }
@mixin center-h($height) { 
    position: absolute;
    top: 50%;
    height: $height;
    margin-top: -($height / 2);
 }