环卫车小程序前端代码
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.

47 lines
834 B

4 months ago
  1. .se {
  2. @for $i from 0 through 200 {
  3. @if $i % 5 == 0 or $i < 20 {
  4. &-p {
  5. &-#{$i} {
  6. padding: $i + rpx;
  7. }
  8. &x-#{$i} {
  9. padding-left: $i + rpx;
  10. padding-right: $i + rpx;
  11. }
  12. &y-#{$i} {
  13. padding-top: $i + rpx;
  14. padding-bottom: $i + rpx;
  15. }
  16. }
  17. &-m {
  18. &-#{$i} {
  19. margin: $i + rpx;
  20. }
  21. &x-#{$i} {
  22. margin-left: $i + rpx;
  23. margin-right: $i + rpx;
  24. }
  25. &y-#{$i} {
  26. margin-top: $i + rpx;
  27. margin-bottom: $i + rpx;
  28. }
  29. }
  30. @each $s, $l in t top, r right, b bottom, l left {
  31. &-p#{$s}-#{$i} {
  32. padding-#{$l}: $i + rpx;
  33. }
  34. &-m#{$s}-#{$i} {
  35. margin-#{$l}: $i + rpx;
  36. }
  37. }
  38. }
  39. }
  40. }