common.css 997 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. * {
  2. margin: 0;
  3. padding: 0;
  4. }
  5. .flex-col {
  6. display: flex;
  7. flex-direction: column;
  8. }
  9. .flex-row {
  10. display: flex;
  11. flex-direction: row;
  12. }
  13. .flex-row-reverse {
  14. display: flex;
  15. flex-direction: row-reverse;
  16. }
  17. .bord {
  18. border: 1px solid red;
  19. }
  20. .justify-start {
  21. display: flex;
  22. justify-content: flex-start;
  23. }
  24. .justify-center {
  25. display: flex;
  26. justify-content: center;
  27. }
  28. .justify-end {
  29. display: flex;
  30. justify-content: flex-end;
  31. }
  32. .justify-evenly {
  33. display: flex;
  34. justify-content: space-evenly;
  35. }
  36. .justify-around {
  37. display: flex;
  38. justify-content: space-around;
  39. }
  40. .justify-between {
  41. display: flex;
  42. justify-content: space-between;
  43. }
  44. .align-start {
  45. display: flex;
  46. align-items: flex-start;
  47. }
  48. .align-center {
  49. display: flex;
  50. align-items: center;
  51. }
  52. .align-end {
  53. display: flex;
  54. align-items: flex-end;
  55. }
  56. .sticky {
  57. /* #ifndef APP-PLUS-NVUE */
  58. display: flex;
  59. position: -webkit-sticky;
  60. /* #endif */
  61. position: sticky;
  62. top: 0rpx;
  63. z-index: 99;
  64. }
  65. .bord {
  66. border: 1px solid red;
  67. }