flex-custom.scss 757 B

1234567891011121314151617181920212223242526272829303132333435
  1. // 自定义flex布局class。vant-ui的布局默认带有flex-wrap,且有其他干扰,干脆自己定义
  2. .flex {
  3. display: flex;
  4. align-content: flex-start; // 侧轴方向 行与行的对齐
  5. align-items: center; // 侧轴方向 行内item的对齐
  6. &.column {
  7. flex-direction: column; // 定义主轴方向
  8. }
  9. &.wrap {
  10. flex-wrap: wrap;
  11. }
  12. /* 主轴方向 item的对齐 */
  13. &.around {
  14. justify-content: space-around;
  15. }
  16. &.between {
  17. justify-content: space-between;
  18. }
  19. &.center {
  20. justify-content: center;
  21. }
  22. &.end {
  23. justify-content: flex-end;
  24. }
  25. &.baseline {
  26. align-items: baseline;
  27. }
  28. &.start {
  29. align-items: flex-start;
  30. }
  31. &.stretch {
  32. align-items: stretch;
  33. }
  34. }
  35. .flex-auto { flex: auto; }