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

13 lines
207 B

3 months ago
  1. @import '../mixin/flex.scss';
  2. .se {
  3. @for $i from 0 through 1000 {
  4. @if $i % 5 == 0 {
  5. &-a-#{$i} {
  6. @include flex-v-c;
  7. width: $i + rpx;
  8. height: $i + rpx;
  9. }
  10. }
  11. }
  12. }