flex.scss 811 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. .u-flex {
  2. display: flex;
  3. flex-direction: row;
  4. align-items: center;
  5. }
  6. .u-flex-wrap {
  7. flex-wrap: wrap;
  8. }
  9. .u-flex-nowrap {
  10. flex-wrap: nowrap;
  11. }
  12. .u-col-center {
  13. align-items: center;
  14. }
  15. .u-col-top {
  16. align-items: flex-start;
  17. }
  18. .u-col-bottom {
  19. align-items: flex-end;
  20. }
  21. .u-row-center {
  22. justify-content: center;
  23. }
  24. .u-row-left {
  25. justify-content: flex-start;
  26. }
  27. .u-row-right {
  28. justify-content: flex-end;
  29. }
  30. .u-row-between {
  31. justify-content: space-between;
  32. }
  33. .u-row-around {
  34. justify-content: space-around;
  35. }
  36. .u-text-left {
  37. text-align: left;
  38. }
  39. .u-text-center {
  40. text-align: center;
  41. }
  42. .u-text-right {
  43. text-align: right;
  44. }
  45. .u-flex-col {
  46. /* #ifndef APP-NVUE */
  47. display: flex;
  48. /* #endif */
  49. flex-direction: column;
  50. }
  51. // 定义flex等分
  52. @for $i from 0 through 12 {
  53. .u-flex-#{$i} {
  54. flex: $i;
  55. }
  56. }