File size: 1,024 Bytes
a8b3f00
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
.customModal {
    max-width: 800px !important;
    max-height: calc(100vh - 80px);
}

.close {
    top: 1.5rem;
    right: 1.5rem;
}

.trash {
    color: transparent;
}

.w64 {
    width: 4rem;
}

.customApi {
    font-size: 11px;
}

.autoWidth {
    width: auto;
}

.trashIcon {
    background-color: transparent;
    background-image: url(./assets/trash-gray.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 16px 16px;
}

.trashIcon:hover {
    background-color: rgba(254, 228, 226, 1);
    background-image: url(./assets/trash-red.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 16px 16px;
}

.copyIcon {
    background-image: url(./assets/copy.svg);
    background-position: center;
    background-repeat: no-repeat;
}

.copyIcon:hover {
    background-image: url(./assets/copy-hover.svg);
    background-position: center;
    background-repeat: no-repeat;
}

.copyIcon.copied {
    background-image: url(./assets/copied.svg);
}