diff --git a/packages/design-system/atoms/popover/Popover.styled.ts b/packages/design-system/atoms/popover/Popover.styled.ts index 6fa9623..bc55ba2 100644 --- a/packages/design-system/atoms/popover/Popover.styled.ts +++ b/packages/design-system/atoms/popover/Popover.styled.ts @@ -29,7 +29,7 @@ export const PopoverBase = styled.div` `} ${onSmallScreen( css` - position: absolute; + position: fixed; top: 0; left: 0; bottom: 0; @@ -37,6 +37,8 @@ export const PopoverBase = styled.div` min-width: unset; width: 100vw; height: 100vh; + z-index: 200; + margin: 0 !important; ` )}; `; @@ -44,7 +46,7 @@ export const PopoverBase = styled.div` export const DefocusHandler = styled.div` background-color: rgba(0, 0, 0, 0.01); position: fixed; - z-index: -1; + z-index: 0; top: 0; bottom: 0; left: 0;