Skip to content

Commit 892dc6e

Browse files
committed
Ensure all elements inherit font-family
1 parent 2592a61 commit 892dc6e

File tree

6 files changed

+10
-10
lines changed

6 files changed

+10
-10
lines changed

src/components/Wallets.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
overflow-y: scroll;
2323
padding: 0;
2424
scrollbar-width: none;
25-
font-family: 'Helvetica Neue';
25+
font-family: inherit;
2626
font-size: inherit;
2727
line-height: 1.15;
2828
box-sizing: border-box;

src/elements/Button.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
padding: 0.55em 1.4em;
1414
cursor: pointer;
1515
color: #4a90e2;
16-
font-family: "Helvetica Neue";
16+
font-family: inherit;
1717
transition: background 150ms ease-in-out;
1818
line-height: 1.15;
1919
}

src/elements/IconButton.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
cursor: pointer;
2626
color: inherit;
2727
line-height: 1.15;
28-
font-family: 'Helvetica Neue';
28+
font-family: inherit;
2929
}
3030
3131
button:hover {

src/modules/select/content.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,33 +6,33 @@ export const extensionInstallMessage = (helpers: {
66

77
if (currentWallet) {
88
return `
9-
<p style="font-size: 0.889rem; font-family: Helvetica Neue; margin: 0.889rem 0;">
9+
<p style="font-size: 0.889rem; font-family: inherit; margin: 0.889rem 0;">
1010
We have detected that you already have
1111
<b>${currentWallet}</b>
1212
installed. If you would prefer to use
1313
<b>${selectedWallet}</b>
1414
instead, then click below to install.
1515
</p>
16-
<p style="font-size: 0.889rem; font-family: Helvetica Neue; margin: 0.889rem 0;">
16+
<p style="font-size: 0.889rem; font-family: inherit; margin: 0.889rem 0;">
1717
<b>Tip:</b>
1818
If you already have ${selectedWallet} installed, check your
1919
browser extension settings to make sure that you have it enabled
2020
and that you have disabled any other browser extension wallets.
2121
<span
2222
class="bn-onboard-clickable"
23-
style="color: #4a90e2; font-size: 0.889rem; font-family: Helvetica Neue;"
23+
style="color: #4a90e2; font-size: 0.889rem; font-family: inherit;"
2424
onclick="window.location.reload();">
2525
Then refresh the page.
2626
</span>
2727
</p>
2828
`
2929
} else {
3030
return `
31-
<p style="font-size: 0.889rem; font-family: Helvetica Neue; margin: 0.889rem 0;">
31+
<p style="font-size: 0.889rem; font-family: inherit; margin: 0.889rem 0;">
3232
You'll need to install <b>${selectedWallet}</b> to continue. Once you have it installed, go ahead and
3333
<span
3434
class="bn-clickable"
35-
style="color: #4a90e2; font-size: 0.889rem; font-family: Helvetica Neue;"
35+
style="color: #4a90e2; font-size: 0.889rem; font-family: inherit;"
3636
onclick={window.location.reload();}>
3737
refresh the page.
3838
</span>

src/views/WalletCheck.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,7 @@
216216
/* .bn-onboard-prepare-description */
217217
p {
218218
font-size: 0.889em;
219-
font-family: 'Helvetica Neue';
219+
font-family: inherit;
220220
margin: 1em 0;
221221
}
222222

src/views/WalletSelect.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@
174174
p {
175175
font-size: 0.889em;
176176
margin: 1.6em 0 0 0;
177-
font-family: 'Helvetica Neue';
177+
font-family: inherit;
178178
}
179179
180180
/* .bn-onboard-select-info-container */

0 commit comments

Comments
 (0)