租房小程序前端代码
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

39 lines
521 B

3 months ago
  1. .se {
  2. &-h {
  3. @for $i from 0 through 1000 {
  4. @if $i % 5 == 0 {
  5. &-#{$i} {
  6. height: $i + rpx;
  7. }
  8. }
  9. @if $i <=100 {
  10. &-p-#{$i} {
  11. height: $i * 1%;
  12. }
  13. &-vh-#{$i} {
  14. height: $i + vh;
  15. }
  16. }
  17. }
  18. &-n {
  19. height: unset;
  20. }
  21. }
  22. &-lh {
  23. @for $i from 0 through 200 {
  24. @if $i % 5 == 0 {
  25. &-#{$i} {
  26. line-height: $i + rpx;
  27. }
  28. }
  29. }
  30. &-n {
  31. line-height: unset;
  32. }
  33. }
  34. }