index.less 766 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. .taskList {
  2. border: none;
  3. .listItem {
  4. margin: 20px 20px 20px 0;
  5. height: 12vh;
  6. box-shadow: 0 0 6px 3px rgba(0, 150, 255, 10%);
  7. border-radius: 10px;
  8. .itemCount {
  9. display: flex;
  10. flex-direction: column;
  11. align-items: center;
  12. margin-right: 30px;
  13. .countNumber {
  14. color: #f5a623;
  15. font-size: 24px;
  16. margin-bottom: 6px;
  17. }
  18. }
  19. }
  20. }
  21. .antdSelect .ant-select-selection-item,
  22. .antdSelect .ant-select-selection-placeholder,
  23. .ant-select-item-option-content
  24. {
  25. font-size: 20px;
  26. }
  27. .antdSelect .ant-select-selection-placeholder{
  28. color: rgba(0,0,0,0.75);
  29. }
  30. .ant-select-dropdown{
  31. width: unset;
  32. }
  33. .fontS20{
  34. font-size: 20px;
  35. }
  36. .fontS18{
  37. font-size: 18px;
  38. }
  39. .fontS16{
  40. font-size: 16px;
  41. }