taskList.less 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. .cardContainer {
  2. width: 100%;
  3. padding: 20px 20px 10px 20px;
  4. margin-left: 5px;
  5. background-color: white;
  6. .collapseLabel {
  7. width: 100%;
  8. .ant-collapse-arrow {
  9. font-size: 24px;
  10. }
  11. :global {
  12. .ant-collapse-item {
  13. margin-bottom: 0;
  14. }
  15. .ant-collapse-header {
  16. justify-content: center;
  17. flex-direction: row-reverse;
  18. align-items: center;
  19. margin-top: 10px;
  20. .ant-collapse-header-text {
  21. font-size: 24px;
  22. flex: unset;
  23. margin-inline-end: unset;
  24. }
  25. .ant-collapse-arrow {
  26. font-size: 24px;
  27. }
  28. }
  29. }
  30. .workOrderCard {
  31. margin-bottom: 20px;
  32. padding: 20px 10px;
  33. border-radius: 8px;
  34. background-color: #e5effa;
  35. display: flex;
  36. align-items: center;
  37. .leftInfo {
  38. width: 80%;
  39. }
  40. .rightButtonContainer {
  41. width: 20%;
  42. display: flex;
  43. flex-direction: column;
  44. justify-content: space-between;
  45. align-items: center;
  46. }
  47. .rightButton {
  48. color: #5697e4;
  49. font-size: 24px;
  50. text-align: center;
  51. }
  52. }
  53. }
  54. }
  55. .topContainer {
  56. // height: 120px;
  57. .fixedTop {
  58. position: fixed;
  59. top: 0;
  60. width: 100%;
  61. z-index: 10;
  62. background-color: #ffffff;
  63. }
  64. }
  65. .fontS28 {
  66. font-size: 28px;
  67. }
  68. .fontS26 {
  69. font-size: 26px;
  70. }
  71. .fontS24 {
  72. font-size: 24px;
  73. }
  74. .fontS20 {
  75. font-size: 20px;
  76. }
  77. .fontS18 {
  78. font-size: 18px;
  79. }
  80. .fontS16 {
  81. font-size: 16px;
  82. }