Commit 71a490f2 authored by Justin Domingue's avatar Justin Domingue Committed by GitHub

fix(#1694): fix popup item header overlap (#1783)

parent abcf1f5a
...@@ -33,7 +33,7 @@ const MobilePopupInner = styled.div` ...@@ -33,7 +33,7 @@ const MobilePopupInner = styled.div`
const FixedPopupColumn = styled(AutoColumn)<{ extraPadding: boolean }>` const FixedPopupColumn = styled(AutoColumn)<{ extraPadding: boolean }>`
position: fixed; position: fixed;
top: ${({ extraPadding }) => (extraPadding ? '72px' : '88px')}; top: ${({ extraPadding }) => (extraPadding ? '80px' : '88px')};
right: 1rem; right: 1rem;
max-width: 355px !important; max-width: 355px !important;
width: 100%; width: 100%;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment