Skip to content

Commit

Permalink
[fix] Firefox UI for numeric TextInput
Browse files Browse the repository at this point in the history
Fix #900
  • Loading branch information
necolas committed May 18, 2018
1 parent edc99e7 commit 96c3f09
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -103,5 +103,6 @@ StyleSheetValidation.addValidStylePropTypes({
pointerEvents: string,
tableLayout: string,
/* @private */
MozAppearance: string
MozAppearance: string,
WebkitAppearance: string
});
2 changes: 1 addition & 1 deletion packages/react-native-web/src/exports/TextInput/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -408,7 +408,7 @@ class TextInput extends Component<*> {
const styles = StyleSheet.create({
initial: {
MozAppearance: 'textfield',
appearance: 'none',
WebkitAppearance: 'none',
backgroundColor: 'transparent',
borderColor: 'black',
borderRadius: 0,
Expand Down

0 comments on commit 96c3f09

Please sign in to comment.