From 19aaf45610b0f3328a588fbd1ce39d3812b142ec Mon Sep 17 00:00:00 2001 From: sehyeon An Date: Mon, 16 Oct 2023 16:39:54 +0900 Subject: [PATCH] =?UTF-8?q?=E2=9C=A8=20input-comment=20box?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/ui/src/input/input-comment/index.tsx | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/packages/ui/src/input/input-comment/index.tsx b/packages/ui/src/input/input-comment/index.tsx index 9f7c8eb..e662afc 100644 --- a/packages/ui/src/input/input-comment/index.tsx +++ b/packages/ui/src/input/input-comment/index.tsx @@ -36,13 +36,14 @@ export function InputComment({ }} /* styles */ maxRows={3} + minRows={1} type='text' radius='full' labelPlacement='outside' classNames={{ label: ['mx-[12px]', 'body-2'], - input: ['!bg-white', 'text-black', 'placeholder:text-gray-300', 'body-3'], - innerWrapper: ['px-[0px]', 'py-[0px]'], + input: ['!bg-white', 'text-black', 'placeholder:text-gray-300', 'body-3', 'px-[0px]', 'py-[0]'], + innerWrapper: [], inputWrapper: [ 'items-start', '!bg-white', @@ -53,7 +54,7 @@ export function InputComment({ '!cursor-text', 'rounded-[20px]', 'px-[20px]', - 'py-[13px]', + 'py-[10px]', ], }} {...rest}