1
0
mirror of https://github.com/Unleash/unleash.git synced 2024-12-22 19:07:54 +01:00

fix: fix transparancy of sticky component (#3376)

This commit is contained in:
Jaanus Sellin 2023-03-23 13:57:21 +02:00 committed by GitHub
parent e9c2a332b6
commit 117c31791d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -5,10 +5,11 @@ interface IBatchSelectionActionsBarProps {
count: number;
}
const StyledStickyContainer = styled('div')(() => ({
const StyledStickyContainer = styled('div')(({ theme }) => ({
position: 'sticky',
marginTop: 'auto',
bottom: 0,
zIndex: theme.zIndex.mobileStepper,
}));
const StyledContainer = styled(Box)(({ theme }) => ({