king
2022-04-21 60dee3dc4dc6869231d6adb0c94c47e36114ca91
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
.normal-group-wrap {
  .print-button, .print-button:hover, .print-button:focus, .print-button:active {
    position: absolute;
    right: 0px;
    top: 0px;
    z-index: 2;
    border: 0;
    background: transparent;
  }
}
 
.normal-group-wrap::after {
  content: ' ';
  display: block;
  clear: both;
}
 
.normal-group-wrap.flex {
  >.ant-row {
    display: flex;
    >.ant-col {
      flex: 1;
      max-width: unset;
      width: 5%;
    }
  }
}