🎨 style(chatInput/index.tsx): add 'bg-input' class to the chat input when lockChat is true to improve visual distinction

This commit is contained in:
Cristhian Zanforlin Lousa 2023-07-10 14:39:11 -03:00
commit 1f2cddf1d2

View file

@ -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..."}