After upgrading from v3 to v4 of material ui, the font size of our entire application has changed, and the default is now 0.875rem
I would expect that the default font size is 1rem
https://codesandbox.io/s/clever-poitras-x70t9

@jim-moody Thanks for the report.
It's a duplicate of #17100.
For anyone else that has this problem, I was able to add the following to the theme object as a workaround:
const theme = createMuiTheme({
typography: {
body2: {
fontSize: "1rem"
}
}
});
For anyone else who tries the above and it does not work. You need to ensure that CssBaseline is placed after MuiThemeProvider E.g.
<MuiThemeProvider theme={theme}>
<CssBaseline />
</MuiThemeProvider>
Most helpful comment
For anyone else that has this problem, I was able to add the following to the theme object as a workaround: