diff options
Diffstat (limited to 'packages')
-rw-r--r-- | packages/instant/src/components/ui/input.tsx | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/packages/instant/src/components/ui/input.tsx b/packages/instant/src/components/ui/input.tsx index 024e81b15..3696fc65a 100644 --- a/packages/instant/src/components/ui/input.tsx +++ b/packages/instant/src/components/ui/input.tsx @@ -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; |