Skip to content

Commit

Permalink
feat(canonical-bridge-widget): Fix default font family
Browse files Browse the repository at this point in the history
  • Loading branch information
aiden-cao committed Nov 21, 2024
1 parent b9be651 commit 26469ca
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ export const ThemeProvider = ({
global: ({ colorMode }: { colorMode: ColorMode }) => ({
body: {
bg: themeConfig?.[colorMode]?.background?.body ?? theme.colors[colorMode].background[3],
fontFamily: themeConfig?.fontFamily ?? 'Space Grotesk',
fontFamily: themeConfig?.fontFamily ?? "'Space Grotesk', -apple-system, sans-serif",
},
...walletStyles(colorMode),
}),
Expand Down

0 comments on commit 26469ca

Please sign in to comment.