与Material UI Grid一起使用时,它的全屏尺寸过大并生成水平滚动条,如何解决?
const styles = theme => ({ root: { flexGrow: 1,}, paper: { padding: theme.spacing.unit * 2,textAlign: 'center',color: theme.palette.text.secondary,},});
答案 0 :(得分:4)
我有同样的问题。找出使用minHeight: "100vh"
可以解决此问题
root: {
minHeight: "100vh",
}
波纹管也起作用:
root: {
position: 'fixed',
width: '100%',
height: '100%',
left: 0,
top: 0,
zIndex: 10,
}
答案 1 :(得分:0)
经过过多测试,我解决了这个问题,将间距24更改为16,因为孩子有12,希望这对某人有帮助
<Grid container spacing={16}>