fix displayname searchbox to small on composeview

pull/712/head
Audric Ackermann 5 years ago
parent 791626c60e
commit f271a24226

@ -190,6 +190,10 @@ $session-compose-margin: 20px;
} }
} }
.user-search-dropdown {
width: 100%;
}
.session-search-input { .session-search-input {
height: 34px; height: 34px;
width: 100%; width: 100%;

@ -66,7 +66,7 @@ export class UserSearchDropdown extends React.Component<Props, State> {
const { selectedContact } = this.state; const { selectedContact } = this.state;
return ( return (
<div> <div className="user-search-dropdown">
<SessionSearchInput <SessionSearchInput
searchString={this.props.searchTerm} searchString={this.props.searchTerm}
onChange={this.updateSearchBound} onChange={this.updateSearchBound}

Loading…
Cancel
Save