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
| .baseTable {
| width: 100%;
| height: 100%;
| min-height: 100px;
| --color-neutral-2: #dbdfe7;
| --base-row-background: #e6f7ff;
| // :global(.arco-table-th) {
| // background-color: var(--color-neutral-2);
| // }
| // background-color: red;
| .baseTableRow {
| :global(.arco-table-td) {
| background-color: var(--base-row-background);
| }
| }
| :global(.arco-table .arco-table-body .arco-table-cell) {
| padding: 0;
| height: 42px;
| }
| .nullData {
| width: 100%;
| height: 23px;
| display: flex;
| justify-content: center;
| align-content: center;
| color: rgb(96, 98, 102);
| font-size: 13px;
| }
| .bodyCell {
| padding: 0 16px;
| height: 42px;
| display: flex;
| align-items: center;
| }
| }
|
|