// Vertical Mediaqueries
@mixin aboveHeight($min, $type: $screen) {
   @include bp($min, min-height, $type) {
    @content;
  }
}

@mixin belowHeight($max, $type: $screen) {
   @include bp($max, max-height, $type) {
    @content;
  }
}
