Skip to content

Commit

Permalink
fixed input size
Browse files Browse the repository at this point in the history
  • Loading branch information
tulsiojha committed Aug 20, 2024
1 parent baae4f0 commit 763e383
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/design-system/components/atoms/input.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -164,9 +164,9 @@ export const TextInputBase = forwardRef<HTMLInputElement, ITextInputBase>(
'pr-0': component !== 'input',
},
{
'h-[38px]': size === 'md' && component === 'input',
'h-[48px]': size === 'lg' && component === 'input',
'h-[60px]': size === 'xl' && component === 'input',
'h-[32px]': size === 'md' && component === 'input',
},
size === 'xl' ? '!px-2xl' : 'px-lg',
className,
Expand Down

0 comments on commit 763e383

Please sign in to comment.