From 391ed005ee47ca65749787ffd6853fc12c00e55f Mon Sep 17 00:00:00 2001 From: kangfenmao Date: Sun, 11 Aug 2024 16:18:06 +0800 Subject: [PATCH] style(Inputbar): add width: auto to Textarea --- src/renderer/src/pages/home/Inputbar/Inputbar.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/src/renderer/src/pages/home/Inputbar/Inputbar.tsx b/src/renderer/src/pages/home/Inputbar/Inputbar.tsx index 807c51747e..60915120eb 100644 --- a/src/renderer/src/pages/home/Inputbar/Inputbar.tsx +++ b/src/renderer/src/pages/home/Inputbar/Inputbar.tsx @@ -257,6 +257,7 @@ const Textarea = styled(TextArea)` font-family: Ubuntu; resize: vertical; overflow: auto; + width: auto; ` const Toolbar = styled.div`