index.less 560 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. @import '../style/var';
  2. .van-row {
  3. &::after {
  4. display: table;
  5. clear: both;
  6. content: '';
  7. }
  8. &--flex {
  9. display: flex;
  10. flex-wrap: wrap;
  11. &::after {
  12. display: none;
  13. }
  14. }
  15. &--justify-center {
  16. justify-content: center;
  17. }
  18. &--justify-end {
  19. justify-content: flex-end;
  20. }
  21. &--justify-space-between {
  22. justify-content: space-between;
  23. }
  24. &--justify-space-around {
  25. justify-content: space-around;
  26. }
  27. &--align-center {
  28. align-items: center;
  29. }
  30. &--align-bottom {
  31. align-items: flex-end;
  32. }
  33. }