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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
@import "~src/styles/variables";
:host {
display: block;
}
.assets {
display: flex;
flex-direction: column;
& &__search {
width: 100%;
margin-bottom: 12px;
> .p-inputtext {
width: 100%;
}
}
& &__item {
display: flex;
background: rgba(88, 0, 176, 0.05);
padding: 12px;
gap: 16px;
border-radius: 4px;
&:not(:last-of-type) {
margin-bottom: 12px;
}
&:hover {
cursor: pointer;
background: rgba(88, 0, 176, 0.15);
}
&:active {
background: rgba(88, 0, 176, 0.25);
}
}
& &__icon {
width: 44px;
height: 44px;
> img {
width: 100%;
height: 100%;
object-fit: cover;
}
}
& &__content {
display: flex;
flex-direction: column;
}
& &__name,
& &__symbol {
color: #1B0D3D;
}
& &__name {
font-weight: 400;
font-size: 14px;
line-height: 22px;
opacity: 0.7;
}
& &__symbol {
font-weight: 600;
font-size: 16px;
line-height: 26px;
}
}