flex-custom.scss 818 B

1234567891011121314151617181920212223242526272829303132333435363738
  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. &.row {
  10. flex-direction: row; // 定义主轴方向
  11. }
  12. &.wrap {
  13. flex-wrap: wrap;
  14. }
  15. /* 主轴方向 item的对齐 */
  16. &.around {
  17. justify-content: space-around;
  18. }
  19. &.between {
  20. justify-content: space-between;
  21. }
  22. &.center {
  23. justify-content: center;
  24. }
  25. &.end {
  26. justify-content: flex-end;
  27. }
  28. &.baseline {
  29. align-items: baseline;
  30. }
  31. &.start {
  32. align-items: flex-start;
  33. }
  34. &.stretch {
  35. align-items: stretch;
  36. }
  37. }
  38. .flex-auto { flex: auto; }