king
2023-02-10 253fbcbdd06f6354e857a8e1e47ddf116459df42
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
.voucher-attach-wrap {
  .ant-modal-body {
    padding: 15px;
 
    .attach-type-btn {
      border-width: 1px;
      color: var(--mk-sys-color);
      border-color: var(--mk-sys-color);
      margin-right: 15px;
    }
 
    .attach-selected-list {
      height: 300px;
      overflow-y: auto;
      border: 1px solid #d8d8d8;
      margin-top: 10px;
    }
    .attach-selected-list::-webkit-scrollbar {
      width: 7px;
    }
    .attach-selected-list::-webkit-scrollbar-thumb {
      border-radius: 5px;
      box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.13);
      background: rgba(0, 0, 0, 0.13);
    }
    .attach-selected-list::-webkit-scrollbar-track {
      box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.05);
      border-radius: 3px;
      border: 1px solid rgba(0, 0, 0, 0.07);
      background: rgba(0, 0, 0, 0);
    }
  }
}