frontendsean
6/8/2018 - 9:03 AM

Center both horizontally and vertically [SCSS]

@mixin hvcenter(){
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }