12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- .taskList {
- border: none;
- max-height: calc(100vh - 140px);
- overflow-y: scroll;
- .listItem {
- margin: 20px 20px 20px 0;
- height: 120px;
- box-shadow: 0 0 6px 3px rgba(0, 150, 255, 10%);
- border-radius: 10px;
- background-color: #ffffff;
- .itemCount {
- display: flex;
- flex-direction: column;
- align-items: center;
- margin-right: 30px;
- .countNumber {
- color: #f5a623;
- font-size: 32px;
- font-weight: 500;
- margin-bottom: 6px;
- }
- }
- }
- }
- .ant-select-clear {
- opacity: 1 !important;
- margin-top: -12px !important;
- width: 24px !important;
- height: 24px !important;
- font-size: 24px !important;
- color: black !important;
- }
- .antdSelect .ant-select-selection-item,
- .antdSelect .ant-select-selection-placeholder,
- .ant-select-item-option-content {
- font-size: 28px;
- color: black;
- margin-right: 10px;
- }
- .ant-select-item-option {
- padding: 8px !important;
- }
- .ant-select-arrow {
- font-size: 24px !important;
- color: black !important;
- }
- .fontS28 {
- font-size: 28px;
- }
- .fontS26 {
- font-size: 26px;
- }
- .fontS24 {
- font-size: 24px;
- }
- .fontS22 {
- font-size: 22px;
- }
- .fontS20 {
- font-size: 20px;
- }
- .fontS18 {
- font-size: 18px;
- }
- .fontS16 {
- font-size: 16px;
- }
|