fix settings overlay hiding underneath prompt (#222)

This commit is contained in:
Timothy Carambat 2023-08-23 19:25:29 -07:00 committed by GitHub
parent defe6054b3
commit 761500c42f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -50,7 +50,7 @@ export default function PromptInput({
}; };
return ( 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 <form
onSubmit={handleSubmit} 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" 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"