Skip to content

Commit

Permalink
Merge pull request #2276 from harrykao/input_inline_block
Browse files Browse the repository at this point in the history
Fix rendering with arrowRenderer and no autosize.
  • Loading branch information
JedWatson committed Jan 13, 2018
2 parents f3f02ef + d235dee commit c64df28
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Select.js
Original file line number Diff line number Diff line change
Expand Up @@ -925,7 +925,7 @@ class Select extends React.Component {
);
}
return (
<div className={ className } key="input-wrap">
<div className={ className } key="input-wrap" style={{display: 'inline-block'}}>
<input id={this.props.id} {...inputProps} />
</div>
);
Expand Down

1 comment on commit c64df28

@marco-fp
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

How do I override this?

Please sign in to comment.