Skip to content

Commit 1b53371

Browse files
committed
frontend: prepare for responsive font-size
In order to change the CSS to change the codebase to use rem, using 'The 62.5% Font Size Trick' we need to first convert all existing rem units back to px. This is so that we don't accidentally already have rem values. If the default base font size is 16px, 1rem equals 16px. Changing back to pixel first makes it much easier to use the 62.5% trick where 1rem = 10px. This refactoring should not introduce any visual change and just converted rem to px. I.e. 1.5rem is now 24px as 1rem currently equals 16px. Also simplified terms.module.css a bit as the title was defined multiple times.
1 parent 96800e8 commit 1b53371

File tree

13 files changed

+33
-39
lines changed

13 files changed

+33
-39
lines changed

frontends/web/src/components/guide/guide.module.css

+3-3
Original file line numberDiff line numberDiff line change
@@ -74,10 +74,9 @@
7474
}
7575

7676
.content h2 {
77-
font-size: 1.1em;
77+
font-size: var(--size-subheader);
7878
font-weight: 400;
79-
line-height: 1.2em;
80-
margin: 0px;
79+
margin: 0;
8180
}
8281

8382
.guide p {
@@ -104,6 +103,7 @@
104103
.entryTitle .entryToggle {
105104
align-items: center;
106105
display: flex;
106+
font-size: var(--size-subheader);
107107
flex-direction: row;
108108
font-weight: bold;
109109
justify-content: flex-start;

frontends/web/src/components/password.module.css

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@
44
line-height: 42px;
55
position: absolute;
66
right: 0;
7-
width: 2rem;
7+
width: 32px;
88
}

frontends/web/src/components/pillbuttongroup/pillbuttongroup.module.css

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
appearance: none;
1010
background: var(--background-secondary);
1111
border: 2px solid var(--background-secondary);
12-
border-radius: 2rem;
12+
border-radius: 32px;
1313
color: var(--color-default);
1414
font-size: var(--size-default);
1515
line-height: 1.75;

frontends/web/src/components/terms/terms.module.css

+5-11
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,6 @@
1212
width: 100%;
1313
}
1414

15-
.title {
16-
font-size: 2rem;
17-
font-weight: 400;
18-
text-align: center;
19-
}
20-
2115
.disclaimer {
2216
background-color: var(--background-secondary);
2317
flex-basis: 100%;
@@ -30,19 +24,19 @@
3024
padding: var(--space-quarter) 1em 1em 1em;
3125
}
3226

33-
.disclaimer .title {
34-
font-size: .875rem;
27+
.title {
28+
font-size: 14px;
3529
font-weight: bold;
3630
text-align: left;
3731
}
3832

3933
.disclaimer p {
40-
font-size: .875rem;
34+
font-size: 14px;
4135
line-height: 1.5;
4236
}
4337

4438
.disclaimer p + .title {
45-
margin: 2.5rem 0 0 0;
39+
margin: 40px 0 0 0;
4640
}
4741

4842
.table {
@@ -51,7 +45,7 @@
5145

5246
.table table {
5347
border-collapse: collapse;
54-
font-size: .875rem;
48+
font-size: 14px;
5549
text-align: left;
5650
}
5751

frontends/web/src/routes/account/add/add.module.css

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
.successCheck {
1515
background-color: var(--color-success);
16-
border: .5rem solid var(--color-success);
16+
border: 8px solid var(--color-success);
1717
border-radius: 100px;
1818
}
1919

frontends/web/src/routes/account/info/info.module.css

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
clear: both;
3737
display: flex;
3838
justify-content: space-between;
39-
min-height: 3.5rem;
39+
min-height: 56px;
4040
}
4141

4242
.verifyButton {

frontends/web/src/routes/account/summary/accountssummary.module.css

+1-1
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@
193193
}
194194

195195
.coinName img {
196-
left: -2rem;
196+
left: -32px;
197197
position: absolute;
198198
top: -3px;
199199
}

frontends/web/src/routes/account/summary/chart.module.css

+7-7
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@
7878
}
7979

8080
.totalValue {
81-
font-size: 2rem;
81+
font-size: 32px;
8282
display: flex;
8383
align-items: flex-end;
8484
}
@@ -87,8 +87,8 @@
8787
color: var(--color-secondary);
8888
display: inline-block;
8989
margin-bottom: 3px;
90-
font-size: 1.4rem;
91-
padding: 0 .25rem;
90+
font-size: 22px;
91+
padding: 0 4px;
9292
}
9393

9494
.chartCanvas {
@@ -109,7 +109,7 @@
109109
font-size: var(--size-small);
110110
margin-top: -25px;
111111
min-width: 140px;
112-
padding: .75rem .6rem;
112+
padding: 12px 10px;
113113
pointer-events: none;
114114
position: absolute;
115115
text-align: center;
@@ -119,14 +119,14 @@
119119

120120
.toolTipValue {
121121
font-weight: normal;
122-
font-size: 1rem;
123-
margin: 0 0 .25rem 0;
122+
font-size: 16px;
123+
margin: 0 0 4px 0;
124124
}
125125

126126
.toolTipUnit {
127127
color: var(--color-secondary);
128128
font-size: var(--size-small);
129-
padding: 0 .125rem;
129+
padding: 0 2px;
130130
}
131131

132132
.toolTipTime {

frontends/web/src/routes/account/summary/percentage-diff.module.css

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11

22
.arrow img {
3-
margin-right: .25rem;
3+
margin-right: 4px;
44
vertical-align: text-bottom;
55
}
66

@@ -13,10 +13,10 @@
1313
}
1414

1515
.diffValue {
16-
font-size: 1.2rem;
16+
font-size: 19px;
1717
}
1818

1919
.diffUnit {
20-
font-size: 1rem;
21-
padding: 0 .25rem;
20+
font-size: 16px;
21+
padding: 0 4px;
2222
}

frontends/web/src/routes/device/bitbox01/check.jsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ class Check extends Component {
9999
onClose={this.abort}>
100100
{ message ? (
101101
<div>
102-
<p style={{ minHeight: '3rem' }}>{message}</p>
102+
<p style={{ minHeight: '48px' }}>{message}</p>
103103
<div className={style.actions}>
104104
<Button secondary onClick={this.abort}>
105105
{t('button.back')}

frontends/web/src/routes/device/components/backups.module.css

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
}
3737

3838
.agreements {
39-
margin-bottom: 1rem;
39+
margin-bottom: 16px;
4040
}
4141

4242
.emptyText {

frontends/web/src/routes/exchange/exchange.module.css

+1-1
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@
8585
}
8686

8787
.title {
88-
font-size: 2rem;
88+
font-size: 32px;
8989
font-weight: 400;
9090
margin-top: 0;
9191
margin-bottom: var(--space-default);

frontends/web/src/style/variables.css

+6-6
Original file line numberDiff line numberDiff line change
@@ -48,9 +48,9 @@
4848
--color-error-border: rgba(227, 6, 19, .33);
4949

5050
/* font sizes */
51-
--size-extra-large: 2.2rem;
52-
--size-large: 2rem;
53-
--size-large-mobile: 1.4rem;
51+
--size-extra-large: 35px;
52+
--size-large: 32px;
53+
--size-large-mobile: 22px;
5454
--size-subheader: 18px;
5555
--size-medium: var(--size-default);
5656
--size-default: 14px;
@@ -64,9 +64,9 @@
6464
--size-wizard-text: 16px;
6565

6666
/* spacing */
67-
--spacing-large: 2rem;
68-
--spacing-default: 1rem;
69-
--spacing-half: .5rem;
67+
--spacing-large: 32px;
68+
--spacing-default: 16px;
69+
--spacing-half: 8px;
7070

7171
--space-large: 64px;
7272
--space-default: 32px;

0 commit comments

Comments
 (0)