//
// @author      OA Wu <oawu.tw@gmail.com>
// @copyright   Copyright (c) 2015 - 2025, @oawu/scss
// @license     http://opensource.org/licenses/MIT  MIT License
// @link        https://www.ioa.tw/
//

@mixin range-height($min: 0, $max: 0) {
  @if $max == 0 {
    @media screen and (min-height: $min) {
      @content;
    }
  } @else {
    @media screen and (max-height: $max - 1px) and (min-height: $min) {
      @content;
    }
  }
}
