diff --git a/frontend/src/component/common/BatchSelectionActionsBar/BatchSelectionActionsBar.tsx b/frontend/src/component/common/BatchSelectionActionsBar/BatchSelectionActionsBar.tsx index 4f9a9e84ee..7fc0c7cca1 100644 --- a/frontend/src/component/common/BatchSelectionActionsBar/BatchSelectionActionsBar.tsx +++ b/frontend/src/component/common/BatchSelectionActionsBar/BatchSelectionActionsBar.tsx @@ -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 }) => ({