We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 81bc692 commit de8c918Copy full SHA for de8c918
src/components/CurrencyInputPanel/index.js
@@ -54,6 +54,7 @@ const Input = styled(BorderlessInput)`
54
font-size: 1.5rem;
55
color: ${({ error, theme }) => error && theme.salmonRed};
56
background-color: ${({ theme }) => theme.inputBackground};
57
+ -moz-appearance: textfield;
58
`
59
60
const StyledBorderlessInput = styled(BorderlessInput)`
@@ -336,6 +337,7 @@ export default function CurrencyInputPanel({
336
337
min="0"
338
error={!!errorMessage}
339
placeholder="0.0"
340
+ step="0.000000000000000001"
341
onChange={e => onValueChange(e.target.value)}
342
onKeyPress={e => {
343
const charCode = e.which ? e.which : e.keyCode
0 commit comments