Commit de8c9189 authored by Ian Lapham's avatar Ian Lapham Committed by Noah Zinsmeister

Fix firefox bugs (#424)

parent 81bc6926
...@@ -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