Merge pull request #1572 from dave4506/fix/instant/input-bug-firefox

Removed number selector for firefox inputs
This commit is contained in:
dave4506
2019-02-01 14:15:21 -05:00
committed by GitHub

View File

@@ -25,6 +25,9 @@ export const Input = styled.input<InputProps>`
background: transparent;
outline: none;
border: none;
&[type='number'] {
-moz-appearance: textfield;
}
&::placeholder {
color: ${props => props.theme[props.fontColor || 'white']} !important;
opacity: 0.5 !important;