We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 222359b commit 2443686Copy full SHA for 2443686
1 file changed
src/theme.ts
@@ -1,6 +1,6 @@
1
-import { createTheme } from '@mui/material/styles';
+import { createTheme, responsiveFontSizes } from '@mui/material/styles';
2
3
-const theme = createTheme({
+let theme = createTheme({
4
palette: {
5
primary: {
6
main: '#1c1c17'
@@ -59,4 +59,6 @@ const theme = createTheme({
59
},
60
});
61
62
-export default theme
+theme = responsiveFontSizes(theme);
63
+
64
+export default theme;
0 commit comments