Skip to content

Commit

Permalink
pr comments
Browse files Browse the repository at this point in the history
  • Loading branch information
animehart committed Mar 29, 2022
1 parent cb5c471 commit a0766b7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ export const useStyles = ({ display }: StylesDeps) => {
padding: `0px ${euiTheme.size.s} `,
width: '100%',
fontWeight: 'inherit',
height: '32px',
height: euiTheme.size.xl,
lineHeight: euiTheme.size.l,
letterSpacing: '0px',
textAlign: 'left',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ export const useStyles = ({ hasSearchResults }: StylesDeps) => {
const searchBarWithResult: CSSObject = {
position: 'relative',
'input.euiFieldSearch.euiFieldSearch-isClearable': {
paddingRight: hasSearchResults ? '200px' : '40px',
paddingRight: hasSearchResults ? '200px' : euiTheme.size.xxl,
},
};

Expand Down

0 comments on commit a0766b7

Please sign in to comment.