Browse Source

fix(List): width of search input overflow in mobile mode (#4164)

#4162
pull/4205/head
合木 7 years ago
committed by 陈帅
parent
commit
b9d9724ad2
  1. 2
      src/pages/List/List.js

2
src/pages/List/List.js

@ -51,7 +51,7 @@ class SearchList extends Component {
enterButton="搜索"
size="large"
onSearch={this.handleFormSubmit}
style={{ width: 522 }}
style={{ maxWidth: 522, width: '100%' }}
/>
</div>
);

Loading…
Cancel
Save