index.css 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. /* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
  2. /* stylelint-disable no-duplicate-selectors */
  3. .ant-flex {
  4. display: flex;
  5. }
  6. .ant-flex-vertical {
  7. flex-direction: column;
  8. }
  9. .ant-flex-justify-flex-start {
  10. justify-content: flex-start;
  11. }
  12. .ant-flex-justify-center {
  13. justify-content: center;
  14. }
  15. .ant-flex-justify-flex-end {
  16. justify-content: flex-end;
  17. }
  18. .ant-flex-justify-space-between {
  19. justify-content: space-between;
  20. }
  21. .ant-flex-justify-space-around {
  22. justify-content: space-around;
  23. }
  24. .ant-flex-justify-space-evenly {
  25. justify-content: space-evenly;
  26. }
  27. .ant-flex-justify-start {
  28. justify-content: start;
  29. }
  30. .ant-flex-justify-end {
  31. justify-content: end;
  32. }
  33. .ant-flex-justify-right {
  34. justify-content: right;
  35. }
  36. .ant-flex-justify-left {
  37. justify-content: left;
  38. }
  39. .ant-flex-justify-stretch {
  40. justify-content: stretch;
  41. }
  42. .ant-flex-justify-normal {
  43. justify-content: normal;
  44. }
  45. .ant-flex-align-flex-start {
  46. align-items: flex-start;
  47. }
  48. .ant-flex-align-center {
  49. align-items: center;
  50. }
  51. .ant-flex-align-flex-end {
  52. align-items: flex-end;
  53. }
  54. .ant-flex-align-start {
  55. align-items: start;
  56. }
  57. .ant-flex-align-end {
  58. align-items: end;
  59. }
  60. .ant-flex-align-stretch {
  61. align-items: stretch;
  62. }
  63. .ant-flex-align-normal {
  64. align-items: normal;
  65. }
  66. .ant-flex-wrap-wrap {
  67. flex-wrap: wrap;
  68. }
  69. .ant-flex-wrap-nowrap {
  70. flex-wrap: nowrap;
  71. }
  72. .ant-flex-wrap-wrap-reverse {
  73. flex-wrap: wrap-reverse;
  74. }