Skip to content
This repository has been archived by the owner on Jul 9, 2021. It is now read-only.

Removed number selector for firefox inputs #1572

Merged
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions packages/instant/src/components/ui/input.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down