Skip to content

Commit

Permalink
fix: fix TextInput sandbox in Safari (#217)
Browse files Browse the repository at this point in the history
  • Loading branch information
amje authored Jun 17, 2024
1 parent db286bb commit dae9e87
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import React from 'react';

export const TextInputComponent = (props: TextInputProps) => {
return (
<div style={{width: '100%', maxWidth: 300}}>
<div style={{width: '100%', maxWidth: 300, lineHeight: 0}}>
<TextInput {...props} />
</div>
);
Expand Down

0 comments on commit dae9e87

Please sign in to comment.