diff --git a/src/common/ButtonGroup.tsx b/src/common/ButtonGroup.tsx index f1d80f4..dfadd58 100644 --- a/src/common/ButtonGroup.tsx +++ b/src/common/ButtonGroup.tsx @@ -148,9 +148,9 @@ export default function ButtonGroup(props: Props){ }}> {b.icon ? - b.icon + b.icon : - + {b.title} } diff --git a/src/theme/theme.ts b/src/theme/theme.ts index 0f2affe..3b2883a 100644 --- a/src/theme/theme.ts +++ b/src/theme/theme.ts @@ -17,6 +17,20 @@ const baseTheme: ThemeOptions = { paper: '#f5f5f5', }, }, + typography: { + fontFamily: [ + "Open Sans", + "-apple-system", + "BlinkMacSystemFont", + '"Segoe UI"', + '"Helvetica Neue"', + "Arial", + "sans-serif", + '"Apple Color Emoji"', + '"Segoe UI Emoji"', + '"Segoe UI Symbol"' + ].join(",") + } // Add other options if needed };