Skip to content

Commit 5ce5353

Browse files
committed
fix(error): fixed font swapping on error page
1 parent d440489 commit 5ce5353

1 file changed

Lines changed: 27 additions & 16 deletions

File tree

styles/postbuild/general.scss

Lines changed: 27 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,34 @@
1-
.app {
2-
font-family: 'Montserrat Variable', -apple-system, BlinkMacSystemFont, Segoe UI, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
3-
font-size: var(--fz-text);
4-
font-weight: 400;
5-
background: var(--color-neutral-1);
6-
color: var(--color-neutral-13);
7-
scroll-margin-top: 96px;
8-
@include base-transition(background-color, color);
1+
.app,
2+
.error-page {
3+
font-family:
4+
"Montserrat Variable",
5+
-apple-system,
6+
BlinkMacSystemFont,
7+
Segoe UI,
8+
Helvetica,
9+
Arial,
10+
sans-serif,
11+
"Apple Color Emoji",
12+
"Segoe UI Emoji";
13+
font-size: var(--fz-text);
14+
font-weight: 400;
15+
background: var(--color-neutral-1);
16+
color: var(--color-neutral-13);
17+
scroll-margin-top: 96px;
18+
@include base-transition(background-color, color);
919

10-
@include theme-dark {
11-
background: var(--color-neutral-10);
12-
color: var(--color-neutral-2);
13-
}
20+
@include theme-dark {
21+
background: var(--color-neutral-10);
22+
color: var(--color-neutral-2);
23+
}
1424
}
1525

16-
*, *::before, *::after {
17-
box-sizing: border-box;
26+
*,
27+
*::before,
28+
*::after {
29+
box-sizing: border-box;
1830
}
1931

2032
:root {
21-
--size-header: 96px;
33+
--size-header: 96px;
2234
}
23-

0 commit comments

Comments
 (0)