| 1234567891011121314151617181920212223 |
- .taskList {
- height: calc(100vh - 70px);
- overflow-y: scroll;
- border: none;
- .listItem {
- margin: 20px 10px;
- height: 10vh;
- box-shadow: 0 0 6px 3px rgba(0, 150, 255, 10%);
- .itemCount {
- display: flex;
- flex-direction: column;
- align-items: center;
- margin-right: 30px;
- .countNumber {
- color: #f5a623;
- font-size: 24px;
- }
- }
- }
- }
|