blob: 9a772f66675bb0ae7231ba1b651cd86e8b85b029 (
plain) (
blame)
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
|
$wallet-balance-breakpoint: 890px;
$wallet-balance-breakpoint-range: "screen and (min-width: #{$break-large}) and (max-width: #{$wallet-balance-breakpoint})";
.token-list-item {
display: flex;
flex-flow: row nowrap;
align-items: center;
padding: 20px 24px;
cursor: pointer;
transition: linear 200ms;
background-color: rgba($wallet-balance-bg, 0);
&__token-balance {
font-size: 130%;
@media #{$wallet-balance-breakpoint-range} {
font-size: 105%;
}
}
&__fiat-amount {
margin-top: .25%;
font-size: 105%;
@media #{$wallet-balance-breakpoint-range} {
font-size: 95%;
}
}
@media #{$wallet-balance-breakpoint-range} {
padding: 10% 4%;
}
&--active {
background-color: rgba($wallet-balance-bg, 1);
}
&__identicon {
margin-right: 15px;
border: '1px solid #dedede';
@media #{$wallet-balance-breakpoint-range} {
margin-right: 4%;
}
}
}
|