-
Notifications
You must be signed in to change notification settings - Fork 136
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
Allow setting an z-Index #258
Comments
I use styled components const StyledBottomSheet = styled(BottomSheet)`
--rsbs-backdrop-bg: ${({ theme }) => theme.body.colors.sparePrimary(0.5)};
--rsbs-bg: ${({ theme }) => theme.body.colors.base()};
--rsbs-overlay-rounded: ${({ theme }) => theme.decorations.borderRadius.base}px;
& [data-rsbs-overlay],
[data-rsbs-backdrop] {
z-index: 9999;
}
&::after {
z-index: 9999;
}
`;
|
Up In my case: |
Experiencing the same. I can click elements through the backdrop. |
same issue here |
I'm experiencing the same issue. I hope options will be added soon. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The webpages sometimes will have z-index > 3. Can we get an option to set the zIndex of the bottom sheet please
The text was updated successfully, but these errors were encountered: