From 1f2cddf1d2838842350136a8ac83403bc0821d16 Mon Sep 17 00:00:00 2001 From: Cristhian Zanforlin Lousa Date: Mon, 10 Jul 2023 14:39:11 -0300 Subject: [PATCH] =?UTF-8?q?=F0=9F=8E=A8=20style(chatInput/index.tsx):=20ad?= =?UTF-8?q?d=20'bg-input'=20class=20to=20the=20chat=20input=20when=20lockC?= =?UTF-8?q?hat=20is=20true=20to=20improve=20visual=20distinction?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/frontend/src/modals/formModal/chatInput/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/frontend/src/modals/formModal/chatInput/index.tsx b/src/frontend/src/modals/formModal/chatInput/index.tsx index d1fc418ca..78a796b04 100644 --- a/src/frontend/src/modals/formModal/chatInput/index.tsx +++ b/src/frontend/src/modals/formModal/chatInput/index.tsx @@ -48,7 +48,7 @@ export default function ChatInput({ setChatValue(e.target.value); }} className={classNames( - lockChat ? " form-modal-lock-true" : " form-modal-lock-false", + lockChat ? " form-modal-lock-true bg-input " : " form-modal-lock-false", "form-modal-lockchat" )} placeholder={"Send a message..."}