1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
| .model-date-group {
| white-space: nowrap;
| line-height: 40px;
| position: relative;
| z-index: 1;
|
| .ant-tag-checkable {
| border-color: #d1d5d9;
| border-radius: 2px;
| margin-right: 2px;
| padding: 2px 6px;
| background: #ffffff;
| }
| .ant-tag-checkable-checked {
| border-color: #1890ff;
| background: #1890ff;
| }
| }
|
| @media screen and (min-width: 1440px) {
| .model-date-group {
| .ant-tag-checkable {
| padding: 2px 7px;
| }
| }
| }
| @media screen and (min-width: 1600px) {
| .model-date-group {
| .ant-tag-checkable {
| padding: 2px 9px;
| }
| }
| }
| @media screen and (min-width: 1920px) {
| .model-date-group {
| .ant-tag-checkable {
| padding: 2px 11px;
| }
| }
| }
|
|