Skip to content

Commit

Permalink
fix: fix transparancy of sticky component (#3376)
Browse files Browse the repository at this point in the history
  • Loading branch information
sjaanus committed Mar 23, 2023
1 parent e9c2a33 commit 117c317
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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 }) => ({
Expand Down

0 comments on commit 117c317

Please sign in to comment.