From 763e3836a63f4f068d958dff591ef94cf0fb4fdf Mon Sep 17 00:00:00 2001 From: Bikash Date: Tue, 20 Aug 2024 11:38:01 +0545 Subject: [PATCH] fixed input size --- src/design-system/components/atoms/input.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/design-system/components/atoms/input.tsx b/src/design-system/components/atoms/input.tsx index 77fa0c8e9..9274e1830 100644 --- a/src/design-system/components/atoms/input.tsx +++ b/src/design-system/components/atoms/input.tsx @@ -164,9 +164,9 @@ export const TextInputBase = forwardRef( '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,