Skip to content

Commit a71259b

Browse files
committed
Preloading fonts and fallback options
1 parent 1a016e3 commit a71259b

18 files changed

+44
-32
lines changed

public/index.html

+30
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,36 @@
2525

2626
<meta property="og:site_name" content="Blocktank" />
2727

28+
<link rel="preload" href="/fonts/NeueHaasDisplay-Thin.woff2" as="font" type="font/woff" crossorigin>
29+
<link rel="preload" href="/fonts/NeueHaasDisplay-Roman.woff2" as="font" type="font/woff" crossorigin>
30+
<link rel="preload" href="/fonts/NeueHaasDisplay-Medium.woff2" as="font" type="font/woff" crossorigin>
31+
32+
<style rel="preload" type='text/css'>
33+
@font-face {
34+
font-family: 'Neue Haas Grotesk Display Pro';
35+
font-style: normal;
36+
font-display: swap;
37+
font-weight: 200;
38+
src: url('/fonts/NeueHaasDisplay-Thin.woff2') format('woff2')
39+
}
40+
41+
@font-face {
42+
font-family: 'Neue Haas Grotesk Display Pro';
43+
font-style: normal;
44+
font-display: swap;
45+
font-weight: 400;
46+
src: url('/fonts/NeueHaasDisplay-Roman.woff2') format('woff2')
47+
}
48+
49+
@font-face {
50+
font-family: 'Neue Haas Grotesk Display Pro';
51+
font-style: normal;
52+
font-display: swap;
53+
font-weight: 600;
54+
src: url('/fonts/NeueHaasDisplay-Medium.woff2') format('woff2')
55+
}
56+
</style>
57+
2858

2959
<!-- <link rel="apple-touch-icon" href="%PUBLIC_URL%/logo192.png" />-->
3060
<!--

src/index.scss

-25
Original file line numberDiff line numberDiff line change
@@ -1,34 +1,9 @@
11
// @see https://stackoverflow.com/questions/11002820/why-should-we-include-ttf-eot-woff-svg-in-a-font-face
22

3-
@font-face {
4-
font-family: 'Neue Haas Grotesk Display Pro';
5-
font-style: normal;
6-
font-display: swap;
7-
font-weight: 200;
8-
src: url('/style/fonts/NeueHaasDisplay-Thin.woff2') format('woff2');
9-
}
10-
11-
@font-face {
12-
font-family: 'Neue Haas Grotesk Display Pro';
13-
font-style: normal;
14-
font-display: swap;
15-
font-weight: 400;
16-
src: url('/style/fonts/NeueHaasDisplay-Roman.woff2') format('woff2');
17-
}
18-
19-
@font-face {
20-
font-family: 'Neue Haas Grotesk Display Pro';
21-
font-style: normal;
22-
font-display: swap;
23-
font-weight: 600;
24-
src: url('/style/fonts/NeueHaasDisplay-Medium.woff2') format('woff2');
25-
}
26-
273
@import './style/variables';
284
@import "~bootstrap/scss/bootstrap";
295
@import './style/bootswatch';
306

31-
327
input:focus,
338
select:focus,
349
textarea:focus,

src/pages/public/configure/index.tsx

+13-6
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ export type IFormErrors = {
2020

2121
const inboundTip: TooltipProps = {
2222
title: 'My receiving capacity',
23-
body: 'This is the amount of sats you will be able to receive in payments. The amount must be at least double that of your \\‘spending balance\\’. Maximum receiving capacity is 50 000 000 sats.'
23+
body: 'This is the amount of sats you will be able to receive in payments. The amount must be at least double that of your ‘spending balance’. Maximum receiving capacity is 50 000 000 sats.'
2424
};
2525

2626
const spendingTip: TooltipProps = {
@@ -35,7 +35,6 @@ const durationTip: TooltipProps = {
3535

3636
function ConfigurePage(): JSX.Element {
3737
const { services } = useAppSelector(selectInfo);
38-
const infoState = useAppSelector(selectInfoState);
3938
const dispatch = useAppDispatch();
4039
const [isLoading, setIsLoading] = useState(true);
4140
const [isSubmitting, setIsSubmitting] = useState(false);
@@ -127,17 +126,25 @@ function ConfigurePage(): JSX.Element {
127126
}
128127

129128
if (Number(remoteBalance) > product.max_channel_size) {
130-
errors.remoteBalance = `Max receiving capacity is ${numberWithSpaces(product.max_channel_size)} sats`;
129+
errors.remoteBalance = `Max receiving capacity is ${numberWithSpaces(
130+
product.max_channel_size
131+
)} sats`;
131132
} else if (Number(remoteBalance) < product.min_channel_size) {
132-
errors.remoteBalance = `Minimum receiving capacity is ${numberWithSpaces(product.min_channel_size)} sats`;
133+
errors.remoteBalance = `Minimum receiving capacity is ${numberWithSpaces(
134+
product.min_channel_size
135+
)} sats`;
133136
}
134137

135138
if (Number(localBalance) !== 0 && Number(localBalance) < product.min_channel_size) {
136-
errors.localBalance = `Minimum spending balance is ${numberWithSpaces(product.min_channel_size)} sats`;
139+
errors.localBalance = `Minimum spending balance is ${numberWithSpaces(
140+
product.min_channel_size
141+
)} sats`;
137142
}
138143

139144
if (Number(localBalance) !== 0 && Number(localBalance) > product.max_channel_size) {
140-
errors.localBalance = `Max spending balance is ${numberWithSpaces(product.max_channel_size)} sats`;
145+
errors.localBalance = `Max spending balance is ${numberWithSpaces(
146+
product.max_channel_size
147+
)} sats`;
141148
}
142149

143150
setFormErrors(errors);

src/style/_variables.scss

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ $border-radius-sm: 0 !default;
5656

5757
// stylelint-disable-next-line value-keyword-case
5858
//$font-family-sans-serif: Lato, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol" !default;
59-
$font-family-sans-serif: 'Neue Haas Grotesk Display Pro', Sans-serif !default;
59+
$font-family-sans-serif: 'Neue Haas Grotesk Display Pro', "Helvetica Neue", Helvetica, sans-serif !default;
6060

6161
$text-muted: rgba(255, 255, 255, .4) !default;
6262

0 commit comments

Comments
 (0)