Commit 22c11797 authored by ian-jh's avatar ian-jh

Merge branch 'beta' of https://github.com/Uniswap/uniswap-frontend into beta

parents a7a2a9ed de8c9189
...@@ -54,6 +54,7 @@ const Input = styled(BorderlessInput)` ...@@ -54,6 +54,7 @@ const Input = styled(BorderlessInput)`
font-size: 1.5rem; font-size: 1.5rem;
color: ${({ error, theme }) => error && theme.salmonRed}; color: ${({ error, theme }) => error && theme.salmonRed};
background-color: ${({ theme }) => theme.inputBackground}; background-color: ${({ theme }) => theme.inputBackground};
-moz-appearance: textfield;
` `
const StyledBorderlessInput = styled(BorderlessInput)` const StyledBorderlessInput = styled(BorderlessInput)`
...@@ -336,6 +337,7 @@ export default function CurrencyInputPanel({ ...@@ -336,6 +337,7 @@ export default function CurrencyInputPanel({
min="0" min="0"
error={!!errorMessage} error={!!errorMessage}
placeholder="0.0" placeholder="0.0"
step="0.000000000000000001"
onChange={e => onValueChange(e.target.value)} onChange={e => onValueChange(e.target.value)}
onKeyPress={e => { onKeyPress={e => {
const charCode = e.which ? e.which : e.keyCode const charCode = e.which ? e.which : e.keyCode
......
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