From 117c31791d46d83ea09e2d967f039b973e4577c6 Mon Sep 17 00:00:00 2001 From: Jaanus Sellin Date: Thu, 23 Mar 2023 13:57:21 +0200 Subject: [PATCH] fix: fix transparancy of sticky component (#3376) --- .../BatchSelectionActionsBar/BatchSelectionActionsBar.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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 }) => ({