/*
* height
*/
.dress {
    @for $i from 1 through 100 {
        .h-#{$i} {
            height: calc(#{$i}vh);
        }
    }
}