暂无描述
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

_spacing.scss 427B

123456789101112131415161718
  1. /*--------------------------------------------------------------
  2. 3. Spacing
  3. ----------------------------------------------------------------*/
  4. @media screen and (min-width: 992px) {
  5. @for $i from 1 through 170 {
  6. .cs_height_#{$i} {
  7. height: $i + px !important;
  8. }
  9. }
  10. }
  11. @media screen and (max-width: 991px) {
  12. @for $i from 1 through 170 {
  13. .cs_height_lg_#{$i} {
  14. height: $i + px !important;
  15. }
  16. }
  17. }