1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- .taskList {
- border: none;
- .listItem {
- margin: 20px 20px 20px 0;
- height: 12vh;
- box-shadow: 0 0 6px 3px rgba(0, 150, 255, 10%);
- border-radius: 10px;
- .itemCount {
- display: flex;
- flex-direction: column;
- align-items: center;
- margin-right: 30px;
- .countNumber {
- color: #f5a623;
- font-size: 24px;
- margin-bottom: 6px;
- }
- }
- }
- }
- .antdSelect .ant-select-selection-item,
- .antdSelect .ant-select-selection-placeholder,
- .ant-select-item-option-content
- {
- font-size: 20px;
- }
- .antdSelect .ant-select-selection-placeholder{
- color: rgba(0,0,0,0.75);
- }
- .ant-select-dropdown{
- width: unset;
- }
- .fontS20{
- font-size: 20px;
- }
- .fontS18{
- font-size: 18px;
- }
- .fontS16{
- font-size: 16px;
- }
|