1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-02-04 00:18:01 +01:00

fix: make area behind bulk actions clickable (#3838)

This commit is contained in:
Mateusz Kwasniewski 2023-05-23 10:41:01 +02:00 committed by GitHub
parent 8aadbc8ae9
commit 3e84d2ed09
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -11,6 +11,7 @@ const StyledStickyContainer = styled('div')(({ theme }) => ({
marginTop: 'auto', marginTop: 'auto',
bottom: 0, bottom: 0,
zIndex: theme.zIndex.mobileStepper, zIndex: theme.zIndex.mobileStepper,
pointerEvents: 'none',
})); }));
const StyledContainer = styled(Box)(({ theme }) => ({ const StyledContainer = styled(Box)(({ theme }) => ({
@ -34,6 +35,7 @@ const StyledBar = styled(Paper)(({ theme }) => ({
borderRadius: theme.shape.borderRadiusLarge, borderRadius: theme.shape.borderRadiusLarge,
gap: theme.spacing(1), gap: theme.spacing(1),
flexWrap: 'wrap', flexWrap: 'wrap',
pointerEvents: 'auto',
})); }));
const StyledCount = styled('span')(({ theme }) => ({ const StyledCount = styled('span')(({ theme }) => ({