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:
parent
e9c2a332b6
commit
117c31791d
@ -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 }) => ({
|
||||
|
Loading…
Reference in New Issue
Block a user