File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
app/(chat)/(routes)/chat/[[...slug]]/_components/chat-main Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ export const ChatInputFooter = ({
32
32
const IMAGE_MODELS = appConfig ?. ai ?. [ 'image-models' ] ?? [ ] ;
33
33
34
34
return (
35
- < div className = "flex bg-background justify-between px-2 py-2 items-center" >
35
+ < div className = "flex justify-between px-2 py-2 items-center" >
36
36
< div className = "text-xs text-muted-foreground flex items-center gap-x-2 pr-2" >
37
37
{ isImageGeneration && (
38
38
< Badge variant = "secondary" className = "rounded-sm px-1 font-normal line-clamp-2" >
Original file line number Diff line number Diff line change @@ -39,7 +39,7 @@ export const ChatInput = ({
39
39
< div className = "flex w-full h-full flex-col pb-2 px-4" >
40
40
< form
41
41
className = { cn (
42
- 'mx-auto flex flex-col lg:max-w-2xl xl:max-w-4xl w-full h-full border rounded-sm z-10 focus-within:border-b-indigo-500 focus-within:border-b-2 transition-colors duration-200 ease-in-out' ,
42
+ 'bg-background mx-auto flex flex-col lg:max-w-2xl xl:max-w-4xl w-full h-full border rounded-sm z-10 focus-within:border-b-indigo-500 focus-within:border-b-2 transition-colors duration-200 ease-in-out' ,
43
43
inputLength >= LIMIT_CHAT_INPUT && 'focus-within:border-b-red-600' ,
44
44
isImageGeneration &&
45
45
'border-b-purple-500 border-b-2 focus-within:border-b-purple-500 ' ,
You can’t perform that action at this time.
0 commit comments