Skip to content

Commit

Permalink
fix(#1694): fix popup item header overlap (#1783)
Browse files Browse the repository at this point in the history
  • Loading branch information
Justin Domingue committed Jun 1, 2021
1 parent abcf1f5 commit 71a490f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Popups/index.tsx
Expand Up @@ -33,7 +33,7 @@ const MobilePopupInner = styled.div`

const FixedPopupColumn = styled(AutoColumn)<{ extraPadding: boolean }>`
position: fixed;
top: ${({ extraPadding }) => (extraPadding ? '72px' : '88px')};
top: ${({ extraPadding }) => (extraPadding ? '80px' : '88px')};
right: 1rem;
max-width: 355px !important;
width: 100%;
Expand Down

1 comment on commit 71a490f

@vercel
Copy link

@vercel vercel bot commented on 71a490f Jun 1, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.