-
-
Notifications
You must be signed in to change notification settings - Fork 225
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
z-index? #19
Comments
That's why Popper.js doesn't set any You should really end up with the best solution for you and manually set them I think. |
@chrisdrackett this was the exact reason for making everything compose-able :) you can add an inline style, classname or whatever you want. I take an approach like this for any personal settings I want for components: const MyPopper = ({ style, ...props }) => (
<Popper style={{ zIndex: 100, ...style }} {...props}/>
) |
I have the same issue, but my Popover is the menu-list of mui-tel-input and I don't have access to the component in order for me to style it manually |
My poppers are often showing up under other elements on the page. I'm trying to figure out a way to add a z-index to the popper, but figured it was worth asking here in case others have already solved this issue
The text was updated successfully, but these errors were encountered: