Skip to content

Commit

Permalink
Merge pull request #4309 from keybase/mgood/fix-search-bar-alignment
Browse files Browse the repository at this point in the history
Fix search pane input styling
  • Loading branch information
chromakode authored Sep 17, 2016
2 parents 01517dd + b0f840f commit 1d41ead
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions shared/search/user-search/search-bar.desktop.js
Original file line number Diff line number Diff line change
Expand Up @@ -96,10 +96,9 @@ class SearchBar extends Component<void, Props, void> {
onChange={() => this._onDebouncedSearch()}
value={this.props.searchText}
hintText={this.props.searchHintText}
hintStyle={{textAlign: 'left', marginTop: 3}}
hintStyle={{textAlign: 'left'}}
underlineShow={false}
style={stylesInput}
textStyle={{height: 31}} />
style={stylesInput} />
{this.props.searchText && <Icon type='iconfont-remove' style={{marginRight: 16}}
onClick={() => this.refs.searchBox.clearValue()} />}
</Box>
Expand All @@ -125,6 +124,7 @@ const stylesInput = {
textAlign: 'left',
marginLeft: 16,
marginRight: 30,
marginBottom: 0,
}
const serviceContainerStyle = {
...globalStyles.flexBoxColumn,
Expand Down

0 comments on commit 1d41ead

Please sign in to comment.