index.less 442 B

1234567891011121314151617181920212223242526272829303132
  1. .van-row {
  2. display: flex;
  3. flex-wrap: wrap;
  4. &--nowrap {
  5. flex-wrap: nowrap;
  6. }
  7. &--justify-center {
  8. justify-content: center;
  9. }
  10. &--justify-end {
  11. justify-content: flex-end;
  12. }
  13. &--justify-space-between {
  14. justify-content: space-between;
  15. }
  16. &--justify-space-around {
  17. justify-content: space-around;
  18. }
  19. &--align-center {
  20. align-items: center;
  21. }
  22. &--align-bottom {
  23. align-items: flex-end;
  24. }
  25. }