Skip to content

Commit

Permalink
feat: TET-854 fix search width
Browse files Browse the repository at this point in the history
  • Loading branch information
karolinaszarek committed Jul 1, 2024
1 parent 3e5e77e commit 338eca0
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/components/TextInput/TextInput.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,8 @@ export const TextInput = forwardRef<
disabled={state === 'disabled'}
ref={inputRef}
size={0}
paddingRight={showClearButton ? '0px' : '28px'}
padding={0}
w={showClearButton ? 'calc(100%-28px)' : '100%'}
/>
{showClearButton && (
<IconButton
Expand Down

0 comments on commit 338eca0

Please sign in to comment.