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
| .lower-text-modal {
| .ant-modal-body {
| min-height: 150px;
|
| .anticon-copy {
| float: right;
| color: #52c41a;
| position: relative;
| top: 20px;
| font-size: 16px;
| }
| .lower-value {
| border: 1px solid #91d5ff;
| height: 200px;
| margin-top: 40px;
| padding: 5px;
| overflow-y: auto;
| }
| .lower-value::-webkit-scrollbar {
| width: 8px;
| }
| .lower-value::-webkit-scrollbar-thumb {
| box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.13);
| background: rgba(0, 0, 0, 0.13);
| border-radius: 5px;
| }
| .lower-value::-webkit-scrollbar-track {
| box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.05);
| border: 1px solid rgba(0, 0, 0, 0.07);
| background: rgba(0, 0, 0, 0);
| border-radius: 3px;
| }
| }
| }
|
|