-
-
Notifications
You must be signed in to change notification settings - Fork 2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[@mantine/core] Drawer: withOverlay={false}
should let you click-through
#2351
[@mantine/core] Drawer: withOverlay={false}
should let you click-through
#2351
Conversation
Hi @italodeandra, we do not need separate prop for that, if |
Hey @rtivital, I also thought that, but it only removes the overlay styles. To be able to click through, I still need to do this: <Drawer
opened={opened}
onClose={handleDrawerClose}
title="Filme"
padding="xl"
size="xl"
position="right"
withOverlay={false}
sx={{
pointerEvents: "none",
"& > *": {
pointerEvents: "auto",
},
}}
> So perhaps I should remove the |
Check if |
Done. |
withOverlay={false}
should let you click-through
Thanks! |
I dont think this works |
@rtivital @italodeandra I don't think it's solved |
Hey bros, my changes were removed by another PR a couple years ago. I don't use the lib anymore so I think you should create a new issue. |
No description provided.