Commit 995a6298 authored by vignesh mohankumar's avatar vignesh mohankumar Committed by GitHub

fix: allows SwapDetailsDropdown to be opened (#4794)

parent 67d5a00a
......@@ -28,7 +28,7 @@ const Wrapper = styled(Row)<{ redesignFlag: boolean }>`
justify-content: center;
border-radius: ${({ redesignFlag }) => redesignFlag && 'inherit'};
padding: ${({ redesignFlag }) => redesignFlag && '8px 12px'};
margin-top: ${({ redesignFlag }) => (redesignFlag ? '0px' : '4px')} !important;
margin-top: ${({ redesignFlag }) => (redesignFlag ? '0px' : '4px')};
min-height: ${({ redesignFlag }) => redesignFlag && '32px'};
`
......
......@@ -106,6 +106,7 @@ const SwapSection = styled.div<{ redesignFlag: boolean }>`
width: 100%;
height: 100%;
pointer-events: none;
content: '';
border: 1px solid ${({ theme }) => theme.backgroundModule};
}
......
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