bug: fix min table size

This commit is contained in:
Paulo Gustavo Veiga 2021-02-28 00:12:43 -08:00
parent 2fcc98efa8
commit d120524023
2 changed files with 4 additions and 3 deletions

View File

@ -40,8 +40,8 @@ const App = (): ReactElement => {
defaultLocale={Locales.EN.code}
messages={locale.message as Record<string, string>}
>
<CssBaseline />
<ThemeProvider theme={theme}>
<CssBaseline />
<Router>
<Switch>
<Route exact path="/">

View File

@ -6,6 +6,7 @@ const theme = createMuiTheme({
'@global': {
body: {
backgroundColor: 'white',
minWidth: '800px'
},
},
},