index.less 401 B

1234567891011121314151617181920212223
  1. .taskList {
  2. height: calc(100vh - 70px);
  3. overflow-y: scroll;
  4. border: none;
  5. .listItem {
  6. margin: 20px 10px;
  7. height: 10vh;
  8. box-shadow: 0 0 6px 3px rgba(0, 150, 255, 10%);
  9. .itemCount {
  10. display: flex;
  11. flex-direction: column;
  12. align-items: center;
  13. margin-right: 30px;
  14. .countNumber {
  15. color: #f5a623;
  16. font-size: 24px;
  17. }
  18. }
  19. }
  20. }