admin管理员组文章数量:1351972
I am trying to implement Material UI drawer with some top margin instead of starting from very top of the page, but its not happening, i have tried applying marginTop
but its not happening. here is the codeSandBox link Drawer.
How to apply top margin?
I am trying to implement Material UI drawer with some top margin instead of starting from very top of the page, but its not happening, i have tried applying marginTop
but its not happening. here is the codeSandBox link Drawer.
How to apply top margin?
Share Improve this question asked Jul 31, 2020 at 9:18 LaraLara 3,0319 gold badges44 silver badges81 bronze badges 4- Hello. Let me see i get you. You want to apply margin-top on temporary drawer right? – Edson Magombe Commented Jul 31, 2020 at 9:33
- Why not use clipped drawer material-ui./ponents/drawers/#ClippedDrawer.js – Edson Magombe Commented Jul 31, 2020 at 9:34
- @EdsonMagombe yes. – Lara Commented Jul 31, 2020 at 9:34
- Why not use clipped drawer material-ui./ponents/drawers/#ClippedDrawer.js – Edson Magombe Commented Jul 31, 2020 at 9:51
2 Answers
Reset to default 10Set the marginTop
to drawerPaper
instead
const useStyles = makeStyles({
drawerPaper: {
marginTop: "50px"
}
});
const classes = useStyles();
<Drawer
classes={{
paper: classes.drawerPaper
}}
>
{sideList("left")}
</Drawer>
In MUI V5:
<Drawer
anchor={'top'}
open={isOpen}
hideBackdrop
onClose={() => onClose()}
sx={{
'&.MuiDrawer-root .MuiDrawer-paper': { marginTop: '67px' },
}}
>
{children}
</Drawer>
本文标签: javascriptHow to display Material UI drawer with top marginStack Overflow
版权声明:本文标题:javascript - How to display Material UI drawer with top margin - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743898046a2558155.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论