From 7dad1c1bc306d8297c78c354614e097849200c85 Mon Sep 17 00:00:00 2001 From: Martin Turoci Date: Mon, 3 Jul 2023 10:50:30 +0200 Subject: [PATCH] feat: Limit maximum textbox width in chatbot. --- ui/src/chatbot.tsx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/ui/src/chatbot.tsx b/ui/src/chatbot.tsx index 9d67e8645a..7af322f7b8 100644 --- a/ui/src/chatbot.tsx +++ b/ui/src/chatbot.tsx @@ -60,7 +60,9 @@ const position: 'absolute', bottom: 0, left: 0, - right: 0 + right: 0, + maxWidth: 800, + margin: '0 auto' }, stopButton: { left: '50%',