-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.scss
81 lines (69 loc) · 1.25 KB
/
style.scss
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
75
76
77
78
79
80
81
div.powercord-crypto {
position: relative;
height: 52px;
padding: 0 8px;
display: flex;
flex-direction: row;
align-items: center;
gap: 8px;
> img {
flex: 0 0 auto;
height: 32px;
width: 32px;
border-radius: 50%;
overflow: hidden;
background: rgba(0,0,0,0.2);
margin-right: 8px;
}
> div.info {
display: flex;
flex-direction: column;
flex: 1 1 100%;
> span:first-child {
font-size: 18px;
color: var(--header-primary);
}
}
> div.actions {
display: flex;
flex-direction: row;
}
div.crypto-price {
&.up {
color: rgb(123, 238, 91);
}
&.down {
color: rgb(249, 103, 45);
}
}
}
div.pc-crypto-popout {
position: absolute;
bottom: 100%;
z-index: 100;
svg.pc-crypto-menu-icon {
border-radius: 50%;
overflow: hidden;
}
}
div#crypto-charter {
max-height: 600px;
height: 600px;
h4#crypto-chart-header {
display: flex;
flex-direction: row;
align-items: center;
img.chart-crypto-icon {
height: 30px;
margin-right: 10px;
}
}
div#crpyto-modal-container {
display: flex;
> iframe.crypto-chart {
width: 100%;
padding: 0 0 15px 0 !important;
margin: 0 !important;
}
}
}