Skip to content

Commit b03b3da

Browse files
committed
Consistent font-family
1 parent 0956ccd commit b03b3da

File tree

9 files changed

+18
-3
lines changed

9 files changed

+18
-3
lines changed

src/components/Modal.svelte

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
/* .bn-onboard-modal */
1212
aside {
1313
display: flex;
14+
font-family: "Helvetica Neue";
1415
justify-content: center;
1516
align-items: center;
1617
position: absolute;
@@ -53,6 +54,7 @@
5354
top: 1.33em;
5455
right: 1.33em;
5556
font-size: inherit;
57+
font-family: inherit;
5658
border-radius: 5px;
5759
transition: background 200ms ease-in-out;
5860
display: flex;

src/components/ModalHeader.svelte

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
display: flex;
1111
align-items: center;
1212
font-size: inherit;
13+
font-family: inherit;
1314
}
1415
1516
/* .bn-onboard-modal-content-header-icon */
@@ -18,16 +19,17 @@
1819
justify-content: center;
1920
align-items: center;
2021
font-size: inherit;
22+
font-family: inherit;
2123
padding: 0.6em;
2224
border-radius: 30px;
2325
background: #eeeeee;
2426
}
2527
2628
/* .bn-onboard-modal-content-header-heading */
2729
h3 {
28-
font-family: "Helvetica Neue";
2930
font-weight: bold;
3031
font-size: 1.33em;
32+
font-family: inherit;
3133
margin: 0 0 0 0.5em;
3234
}
3335
</style>

src/components/SelectedWallet.svelte

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,14 @@
1212
section {
1313
color: inherit;
1414
font-size: inherit;
15+
font-family: inherit;
1516
display: block;
1617
}
1718
1819
footer {
1920
display: flex;
2021
font-size: inherit;
22+
font-family: inherit;
2123
justify-content: space-between;
2224
}
2325
</style>

src/components/Wallets.svelte

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@
3535
width: 100%;
3636
display: flex;
3737
font-size: inherit;
38+
font-family: inherit;
3839
justify-content: center;
3940
margin-top: 1em;
4041
}
@@ -67,7 +68,7 @@
6768

6869
{#if modalData.secondaryWallets && !showingAllWalletModules}
6970
<div>
70-
<Button highlight={true} onclick={() => (showingAllWalletModules = true)}>
71+
<Button onclick={() => (showingAllWalletModules = true)}>
7172
Show More
7273
</Button>
7374
</div>

src/elements/Button.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
<script lang="ts">
22
import { app } from "../stores";
3-
export let highlight: boolean = false;
43
export let onclick: () => void = () => {};
54
</script>
65

76
<style>
87
button {
98
background: inherit;
109
font-size: 0.889em;
10+
font-family: inherit;
1111
border: 1px solid #4a90e2;
1212
border-radius: 40px;
1313
padding: 0.55em 1.4em;

src/elements/IconButton.svelte

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@
4141
height: 40px;
4242
width: 40px;
4343
line-height: 40px;
44+
font-family: inherit;
4445
}
4546
4647
img {
@@ -50,9 +51,11 @@
5051
}
5152
5253
span {
54+
font-size: inherit;
5355
margin-left: 0.66em;
5456
font-weight: bold;
5557
text-align: left;
58+
font-family: inherit;
5659
}
5760
5861
@media only screen and (max-width: 450px) {

src/elements/IconDisplay.svelte

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
border: none;
1313
margin: 0;
1414
font-size: inherit;
15+
font-family: inherit;
1516
background: inherit;
1617
padding: 0;
1718
width: 18em;
@@ -28,6 +29,7 @@
2829
margin-left: 0.66em;
2930
font-weight: bold;
3031
font-size: inherit;
32+
font-family: inherit;
3133
opacity: 0.7;
3234
text-align: left;
3335
}

src/views/WalletReady.svelte

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -204,6 +204,7 @@
204204
span {
205205
color: #e2504a;
206206
font-size: 0.889em;
207+
font-family: inherit;
207208
display: block;
208209
margin-bottom: 0.75em;
209210
padding: 0.5em;

src/views/WalletSelect.svelte

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -170,13 +170,15 @@
170170
div {
171171
display: flex;
172172
font-size: inherit;
173+
font-family: inherit;
173174
justify-content: space-between;
174175
}
175176
176177
/* .bn-onboard-select-wallet-info */
177178
div span {
178179
color: #4a90e2;
179180
font-size: inherit;
181+
font-family: inherit;
180182
margin-top: 0.66em;
181183
cursor: pointer;
182184
}

0 commit comments

Comments
 (0)