mirror of
https://bitbucket.org/wisemapping/wisemapping-frontend.git
synced 2024-11-11 01:43:23 +01:00
bug: fix min table size
This commit is contained in:
parent
2fcc98efa8
commit
d120524023
@ -40,8 +40,8 @@ const App = (): ReactElement => {
|
|||||||
defaultLocale={Locales.EN.code}
|
defaultLocale={Locales.EN.code}
|
||||||
messages={locale.message as Record<string, string>}
|
messages={locale.message as Record<string, string>}
|
||||||
>
|
>
|
||||||
<CssBaseline />
|
|
||||||
<ThemeProvider theme={theme}>
|
<ThemeProvider theme={theme}>
|
||||||
|
<CssBaseline />
|
||||||
<Router>
|
<Router>
|
||||||
<Switch>
|
<Switch>
|
||||||
<Route exact path="/">
|
<Route exact path="/">
|
||||||
@ -72,8 +72,8 @@ const App = (): ReactElement => {
|
|||||||
</QueryClientProvider>
|
</QueryClientProvider>
|
||||||
</Provider>
|
</Provider>
|
||||||
) : (
|
) : (
|
||||||
<div>Loading ... </div>
|
<div>Loading ... </div>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
||||||
export default App;
|
export default App;
|
||||||
|
@ -6,6 +6,7 @@ const theme = createMuiTheme({
|
|||||||
'@global': {
|
'@global': {
|
||||||
body: {
|
body: {
|
||||||
backgroundColor: 'white',
|
backgroundColor: 'white',
|
||||||
|
minWidth: '800px'
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
Loading…
Reference in New Issue
Block a user