Commit 55bbaffe authored by Ian Lapham's avatar Ian Lapham Committed by GitHub

fix: support for isolated pool creation (#2029)

* revert to remove ui polish changes

* left align blurb and fix bp issue

* fix translation wrapper

* remove preview screen for create, hide submitted txn UI for create, copy updates

* small fixes

* copy updates for create blurb

* add set price range title

* add translation

* fix some translations
Co-authored-by: default avatarJustin Domingue <judo@uniswap.org>
parent e1c3ad8f
This diff is collapsed.
......@@ -20,7 +20,7 @@ export const Wrapper = styled.div`
padding: 26px 16px;
min-width: 480px;
${({ theme }) => theme.mediaWidth.upToSmall`
${({ theme }) => theme.mediaWidth.upToMedium`
min-width: 400px;
`};
......@@ -40,7 +40,7 @@ export const ScrollablePage = styled.div`
`
export const DynamicSection = styled(AutoColumn)<{ disabled?: boolean }>`
opacity: ${({ disabled }) => (disabled ? '0.3' : '1')};
opacity: ${({ disabled }) => (disabled ? '0.2' : '1')};
pointer-events: ${({ disabled }) => (disabled ? 'none' : 'initial')};
`
......
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