Add background for chat window
Browse files
app/components/chat/BaseChat.tsx
CHANGED
@@ -192,9 +192,11 @@ export const BaseChat = React.forwardRef<HTMLDivElement, BaseChatProps>(
|
|
192 |
}}
|
193 |
</ClientOnly>
|
194 |
<div
|
195 |
-
className={classNames(
|
196 |
-
'
|
197 |
-
|
|
|
|
|
198 |
>
|
199 |
<ModelSelector
|
200 |
key={provider?.name + ':' + modelList.length}
|
|
|
192 |
}}
|
193 |
</ClientOnly>
|
194 |
<div
|
195 |
+
className={classNames(
|
196 |
+
'bg-bolt-elements-background-depth-2 border-y border-bolt-elements-borderColor relative w-full max-w-chat mx-auto z-prompt',
|
197 |
+
{
|
198 |
+
'sticky bottom-0': chatStarted
|
199 |
+
})}
|
200 |
>
|
201 |
<ModelSelector
|
202 |
key={provider?.name + ':' + modelList.length}
|