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
41
42
43
44
45
46
| .myMediation {
| position: relative;
| margin: @pageMargin;
|
| &-tuiTag {
| width: 22px;
| height: 22px;
| border: 0.5px solid @error-color;
| font-size: 12px;
| line-height: 20px;
| color: @error-color;
| text-align: center;
| border-radius: 50%;
| }
|
| &-search {
| background-color: #ffffff;
| border-radius: @border-radius-base;
| padding: 16px;
| }
|
| &-table {
| background-color: #ffffff;
|
| .ant-table-pagination.ant-pagination {
| margin: 16px;
| }
|
| .site-tag-plus {
| background: #fff;
| border-style: dashed;
| cursor: pointer;
| }
| }
|
| &-check {
| position: absolute;
| background-color: #ffffff;
| top: 0;
| left: 0;
| right: 0;
| bottom: 0;
| z-index: 99;
| padding: 16px;
| }
| }
|
|