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
| .extendedSummaryTable {
| width: calc(100% - 20px);
| height: calc(100% - 160px);
| min-height: 100px;
| margin: 10px;
| margin-bottom: 0;
| margin-top: 0;
| overflow: hidden;
| .exclamation {
| display: flex;
| align-items: center;
| justify-content: center;
| img {
| margin-left: 5px;
| }
| }
| :global(.vxe-table .vxe-cell--sort) {
| width: 1.5em;
| height: 9px;
| text-align: center;
| display: inline-block;
| position: relative;
| }
| :global(.vxe-table--render-default .vxe-table--body-wrapper) {
| transform: translate3d(0, 0, 0);
| }
| }
|
|