steevehook
9/24/2018 - 1:32 PM

Dynamic height increase

Dynamic height increase

@include breakpoint(500px) {
  height: 550px;
}

@include breakpoint(xp) {
  height: 470px;
}

@for $i from 0 to 6 {
  @include breakpoint(#{900 + $i * 400}px) {
    height: #{600 + $i * 100}px;
  }
}