租房小程序前端代码
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.

25 lines
328 B

3 months ago
  1. .se {
  2. &-w {
  3. @for $i from 0 through 1000 {
  4. @if $i % 5 == 0 {
  5. &-#{$i} {
  6. width: $i + rpx;
  7. }
  8. }
  9. @if $i <=100 {
  10. &-p-#{$i} {
  11. width: $i * 1%;
  12. }
  13. &-vw-#{$i} {
  14. width: $i + vw;
  15. }
  16. }
  17. }
  18. &-n {
  19. width: unset;
  20. }
  21. }
  22. }