index.less 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. .taskList {
  2. border: none;
  3. max-height: calc(100vh - 140px);
  4. overflow-y: scroll;
  5. .listItem {
  6. margin: 20px 20px 20px 0;
  7. height: 120px;
  8. box-shadow: 0 0 6px 3px rgba(0, 150, 255, 10%);
  9. border-radius: 10px;
  10. background-color: #ffffff;
  11. .itemCount {
  12. display: flex;
  13. flex-direction: column;
  14. align-items: center;
  15. margin-right: 30px;
  16. .countNumber {
  17. color: #f5a623;
  18. font-size: 32px;
  19. font-weight: 500;
  20. margin-bottom: 6px;
  21. }
  22. }
  23. }
  24. }
  25. .ant-select-clear {
  26. opacity: 1 !important;
  27. margin-top: -12px !important;
  28. width: 24px !important;
  29. height: 24px !important;
  30. font-size: 24px !important;
  31. color: black !important;
  32. }
  33. .antdSelect .ant-select-selection-item,
  34. .antdSelect .ant-select-selection-placeholder,
  35. .ant-select-item-option-content {
  36. font-size: 28px;
  37. color: black;
  38. margin-right: 10px;
  39. }
  40. .ant-select-item-option {
  41. padding: 8px !important;
  42. }
  43. .ant-select-arrow {
  44. font-size: 24px !important;
  45. color: black !important;
  46. }
  47. .fontS28 {
  48. font-size: 28px;
  49. }
  50. .fontS26 {
  51. font-size: 26px;
  52. }
  53. .fontS24 {
  54. font-size: 24px;
  55. }
  56. .fontS22 {
  57. font-size: 22px;
  58. }
  59. .fontS20 {
  60. font-size: 20px;
  61. }
  62. .fontS18 {
  63. font-size: 18px;
  64. }
  65. .fontS16 {
  66. font-size: 16px;
  67. }