From f9015df903c98f8afbc7612b95663ac364f0d06f Mon Sep 17 00:00:00 2001 From: Timothy Carambat Date: Fri, 9 Jun 2023 16:21:55 -0700 Subject: [PATCH] fix input color (#17) --- .../WorkspaceChat/ChatContainer/PromptInput/index.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/components/WorkspaceChat/ChatContainer/PromptInput/index.jsx b/frontend/src/components/WorkspaceChat/ChatContainer/PromptInput/index.jsx index 59c6fe8d..a9e5d9c6 100644 --- a/frontend/src/components/WorkspaceChat/ChatContainer/PromptInput/index.jsx +++ b/frontend/src/components/WorkspaceChat/ChatContainer/PromptInput/index.jsx @@ -63,7 +63,7 @@ export default function PromptInput({ adjustTextArea(e); }} value={message} - className="cursor-text max-h-[100px] md:min-h-[40px] block mx-2 md:mx-4 p-2.5 w-full text-[16px] md:text-sm rounded-lg border bg-gray-50 border-gray-300 placeholder-gray-400 text-white dark:bg-stone-600 dark:border-stone-700 dark:placeholder-stone-400" + className="cursor-text max-h-[100px] md:min-h-[40px] block mx-2 md:mx-4 p-2.5 w-full text-[16px] md:text-sm rounded-lg border bg-gray-50 border-gray-300 placeholder-gray-400 text-gray-900 dark:text-white dark:bg-stone-600 dark:border-stone-700 dark:placeholder-stone-400" placeholder="Shift + Enter for newline. Enter to submit." />