mirror of
https://github.com/Unleash/unleash.git
synced 2025-06-04 01:18:20 +02: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;
|
count: number;
|
||||||
}
|
}
|
||||||
|
|
||||||
const StyledStickyContainer = styled('div')(() => ({
|
const StyledStickyContainer = styled('div')(({ theme }) => ({
|
||||||
position: 'sticky',
|
position: 'sticky',
|
||||||
marginTop: 'auto',
|
marginTop: 'auto',
|
||||||
bottom: 0,
|
bottom: 0,
|
||||||
|
zIndex: theme.zIndex.mobileStepper,
|
||||||
}));
|
}));
|
||||||
|
|
||||||
const StyledContainer = styled(Box)(({ theme }) => ({
|
const StyledContainer = styled(Box)(({ theme }) => ({
|
||||||
|
Loading…
Reference in New Issue
Block a user