From 761500c42fe1832e3c7eeeb3b37e56b5bf299bca Mon Sep 17 00:00:00 2001 From: Timothy Carambat <rambat1010@gmail.com> Date: Wed, 23 Aug 2023 19:25:29 -0700 Subject: [PATCH] fix settings overlay hiding underneath prompt (#222) --- .../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 b0e1e7a89..3c3f6e0f5 100644 --- a/frontend/src/components/WorkspaceChat/ChatContainer/PromptInput/index.jsx +++ b/frontend/src/components/WorkspaceChat/ChatContainer/PromptInput/index.jsx @@ -50,7 +50,7 @@ export default function PromptInput({ }; return ( - <div className="w-full fixed md:absolute bottom-0 left-0 z-10"> + <div className="w-full fixed md:absolute bottom-0 left-0 z-10 md:z-0"> <form onSubmit={handleSubmit} className="flex flex-col gap-y-1 bg-white dark:bg-black-900 md:bg-transparent rounded-t-lg md:w-3/4 w-full mx-auto"