File tree Expand file tree Collapse file tree 13 files changed +33
-39
lines changed Expand file tree Collapse file tree 13 files changed +33
-39
lines changed Original file line number Diff line number Diff line change 80
80
}
81
81
82
82
.content h2 {
83
- font-size : 1.1 em ;
83
+ font-size : var ( --size-subheader ) ;
84
84
font-weight : 400 ;
85
- line-height : 1.2em ;
86
- margin : 0px ;
85
+ margin : 0 ;
87
86
}
88
87
89
88
.guide p {
115
114
.entryTitle .entryToggle {
116
115
align-items : center;
117
116
display : flex;
117
+ font-size : var (--size-subheader );
118
118
flex-direction : row;
119
119
font-weight : bold;
120
120
justify-content : flex-start;
Original file line number Diff line number Diff line change 4
4
line-height : 42px ;
5
5
position : absolute;
6
6
right : 0 ;
7
- width : 2 rem ;
7
+ width : 32 px ;
8
8
}
Original file line number Diff line number Diff line change 9
9
appearance : none;
10
10
background : var (--background-secondary );
11
11
border : 2px solid var (--background-secondary );
12
- border-radius : 2 rem ;
12
+ border-radius : 32 px ;
13
13
color : var (--color-default );
14
14
font-size : var (--size-default );
15
15
line-height : 1.75 ;
Original file line number Diff line number Diff line change 12
12
width : 100% ;
13
13
}
14
14
15
- .title {
16
- font-size : 2rem ;
17
- font-weight : 400 ;
18
- text-align : center;
19
- }
20
-
21
15
.disclaimer {
22
16
background-color : var (--background-secondary );
23
17
flex-basis : 100% ;
30
24
padding : var (--space-quarter ) 1em 1em 1em ;
31
25
}
32
26
33
- .disclaimer . title {
34
- font-size : .875 rem ;
27
+ .title {
28
+ font-size : 14 px ;
35
29
font-weight : bold;
36
30
text-align : left;
37
31
}
38
32
39
33
.disclaimer p {
40
- font-size : .875 rem ;
34
+ font-size : 14 px ;
41
35
line-height : 1.5 ;
42
36
}
43
37
44
38
.disclaimer p + .title {
45
- margin : 2.5 rem 0 0 0 ;
39
+ margin : 40 px 0 0 0 ;
46
40
}
47
41
48
42
.table {
51
45
52
46
.table table {
53
47
border-collapse : collapse;
54
- font-size : .875 rem ;
48
+ font-size : 14 px ;
55
49
text-align : left;
56
50
}
57
51
Original file line number Diff line number Diff line change 13
13
14
14
.successCheck {
15
15
background-color : var (--color-success );
16
- border : .5 rem solid var (--color-success );
16
+ border : 8 px solid var (--color-success );
17
17
border-radius : 100px ;
18
18
}
19
19
Original file line number Diff line number Diff line change 33
33
clear : both;
34
34
display : flex;
35
35
justify-content : space-between;
36
- min-height : 3.5 rem ;
36
+ min-height : 56 px ;
37
37
}
38
38
39
39
.verifyButton {
Original file line number Diff line number Diff line change 193
193
}
194
194
195
195
.coinName img {
196
- left : -2 rem ;
196
+ left : -32 px ;
197
197
position : absolute;
198
198
top : -3px ;
199
199
}
Original file line number Diff line number Diff line change 82
82
}
83
83
84
84
.totalValue {
85
- font-size : 2 rem ;
85
+ font-size : 32 px ;
86
86
display : flex;
87
87
align-items : flex-end;
88
88
}
91
91
color : var (--color-secondary );
92
92
display : inline-block;
93
93
margin-bottom : 3px ;
94
- font-size : 1.4 rem ;
95
- padding : 0 .25 rem ;
94
+ font-size : 22 px ;
95
+ padding : 0 4 px ;
96
96
}
97
97
98
98
.chartCanvas {
113
113
font-size : var (--size-small );
114
114
margin-top : -25px ;
115
115
min-width : 140px ;
116
- padding : .75 rem .6 rem ;
116
+ padding : 12 px 10 px ;
117
117
pointer-events : none;
118
118
position : absolute;
119
119
text-align : center;
123
123
124
124
.toolTipValue {
125
125
font-weight : normal;
126
- font-size : 1 rem ;
127
- margin : 0 0 .25 rem 0 ;
126
+ font-size : 16 px ;
127
+ margin : 0 0 4 px 0 ;
128
128
}
129
129
130
130
.toolTipUnit {
131
131
color : var (--color-secondary );
132
132
font-size : var (--size-small );
133
- padding : 0 .125 rem ;
133
+ padding : 0 2 px ;
134
134
}
135
135
136
136
.toolTipTime {
Original file line number Diff line number Diff line change 1
1
2
2
.arrow img {
3
- margin-right : .25 rem ;
3
+ margin-right : 4 px ;
4
4
vertical-align : text-bottom;
5
5
}
6
6
13
13
}
14
14
15
15
.diffValue {
16
- font-size : 1.2 rem ;
16
+ font-size : 19 px ;
17
17
}
18
18
19
19
.diffUnit {
20
- font-size : 1 rem ;
21
- padding : 0 .25 rem ;
20
+ font-size : 16 px ;
21
+ padding : 0 4 px ;
22
22
}
Original file line number Diff line number Diff line change @@ -99,7 +99,7 @@ class Check extends Component {
99
99
onClose = { this . abort } >
100
100
{ message ? (
101
101
< div >
102
- < p style = { { minHeight : '3rem ' } } > { message } </ p >
102
+ < p style = { { minHeight : '48px ' } } > { message } </ p >
103
103
< div className = { style . actions } >
104
104
< Button secondary onClick = { this . abort } >
105
105
{ t ( 'button.back' ) }
You can’t perform that action at this time.
0 commit comments