Skip to content

Commit 242e6d7

Browse files
committed
feat: ChatInput 텍스트 영역 스타일 및 최소 높이 반영
1 parent 5a82c1a commit 242e6d7

1 file changed

Lines changed: 6 additions & 2 deletions

File tree

src/shared/ui/ChatInput/ChatInput.variants.ts

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,18 @@ export const chatInputVariants = tv({
55
root: ['flex w-full'],
66
wrapper: [
77
'flex items-center',
8-
'w-[1200px] max-w-full h-[60px]',
8+
'w-[1200px] max-w-full min-h-[60px]',
99
'px-[22px] py-[11px]',
1010
'gap-[16px]',
1111
'rounded-[var(--radius-l)]',
1212
'border-[1px] border-[var(--color-green-700)]',
1313
'bg-white',
1414
],
15-
input: ['w-full bg-transparent outline-none', 'typo-body-1', 'placeholder:text-[var(--color-gray-400)]'],
15+
input: [
16+
'w-full bg-transparent outline-none resize-none',
17+
'typo-body-1',
18+
'placeholder:text-[var(--color-gray-400)]',
19+
],
1620
button: ['flex items-center justify-center', 'w-[38px] h-[38px]', 'rounded-full', 'transition-colors', 'shrink-0'],
1721
icon: ['w-[38px] h-[38px]', '[&_.send-circle]:transition-colors', '[&_.send-arrow]:transition-colors'],
1822
},

0 commit comments

Comments
 (0)