Skip to content

Commit

Permalink
[Autocomplete] Fix autocomplete left padding (#36649)
Browse files Browse the repository at this point in the history
  • Loading branch information
mj12albert committed Apr 14, 2023
1 parent 511b385 commit 5853e6a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/mui-material/src/Autocomplete/Autocomplete.js
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ const AutocompleteRoot = styled('div', {
paddingRight: 52 + 4 + 9,
},
[`& .${autocompleteClasses.input}`]: {
padding: '7.5px 4px 7.5px 6px',
padding: '7.5px 4px 7.5px 5px',
},
[`& .${autocompleteClasses.endAdornment}`]: {
right: 9,
Expand All @@ -152,7 +152,7 @@ const AutocompleteRoot = styled('div', {
paddingBottom: 6,
paddingLeft: 6,
[`& .${autocompleteClasses.input}`]: {
padding: '2.5px 4px 2.5px 6px',
padding: '2.5px 4px 2.5px 8px',
},
},
[`& .${filledInputClasses.root}`]: {
Expand Down

0 comments on commit 5853e6a

Please sign in to comment.