123456789101112131415161718 |
- /*--------------------------------------------------------------
- 3. Spacing
- ----------------------------------------------------------------*/
- @media screen and (min-width: 992px) {
- @for $i from 1 through 170 {
- .cs_height_#{$i} {
- height: $i + px !important;
- }
- }
- }
-
- @media screen and (max-width: 991px) {
- @for $i from 1 through 170 {
- .cs_height_lg_#{$i} {
- height: $i + px !important;
- }
- }
- }
|