Skip to content

Commit

Permalink
fix: search input not full width (#1476)
Browse files Browse the repository at this point in the history
* fix: css override import

* fix: css override import

* fix: search input styles
  • Loading branch information
Vita-Meow authored Feb 7, 2023
1 parent 2578808 commit 80d467a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/SearchInput/SearchInput.js
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ const SearchInput = React.forwardRef( ({
) : inputGroupClasses;
let filteredResult = value && searchList ? filterList(searchList, value) : searchList;
const popoverBody = (
<Menu>
<Menu style={{ width: '100%' }}>
<Menu.List {...listProps}>
{filteredResult && filteredResult.length > 0 ? (
filteredResult.map((item, index) => {
Expand Down

0 comments on commit 80d467a

Please sign in to comment.