From 5921d6626a90d44085f6954f3d81590210cd04e6 Mon Sep 17 00:00:00 2001 From: jon Date: Thu, 23 Jul 2026 16:12:26 -0500 Subject: [PATCH] fix(ui): match input-row button height to the textarea Co-Authored-By: Claude Opus 4.8 --- interface/web/src/Chatbot.jsx | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/interface/web/src/Chatbot.jsx b/interface/web/src/Chatbot.jsx index f331f1b..5bc50f3 100644 --- a/interface/web/src/Chatbot.jsx +++ b/interface/web/src/Chatbot.jsx @@ -709,16 +709,16 @@ export function Chatbot({ conversationId, setConversationId, onConversationChang ))} )} -
+
{((sttLocal && canRecord) || SpeechRec) && ( )} @@ -745,7 +745,10 @@ export function Chatbot({ conversationId, setConversationId, onConversationChang onClick={loading ? stopGeneration : sendMessage} disabled={!loading && !input.trim() && images.length === 0} style={{ - padding: "0.9rem 1.5rem", + display: "flex", + alignItems: "center", + justifyContent: "center", + padding: "0 1.5rem", background: loading ? "#c0392b" : (!input.trim() && images.length === 0 ? "#555" : "#007acc"), color: "#fff", border: "none",