Merge branch 'develop' into feat/user-completion-form

This commit is contained in:
SajadMRjl
2025-08-15 19:39:17 +03:30
committed by GitHub
59 changed files with 3882 additions and 86 deletions

View File

@@ -37,13 +37,28 @@ export const CustomThemeProvider: React.FC<{ children: React.ReactNode }> = ({
cssVariables: {
colorSchemeSelector: 'class',
},
components: {
MuiTextField: {
defaultProps: {
variant: 'outlined',
fullWidth: true,
},
},
MuiButton: {
defaultProps: {
size: 'large',
fullWidth: true,
variant: 'contained',
},
},
},
spacing: 8,
typography: typography,
});
}, [i18n]);
return (
<ThemeProvider theme={theme} defaultMode="system">
<ThemeProvider theme={theme} defaultMode="light">
{children}
</ThemeProvider>
);