Eduards commited on
Commit
b0b6760
·
1 Parent(s): b39e48b

Add background for chat window

Browse files
Files changed (1) hide show
  1. app/components/chat/BaseChat.tsx +5 -3
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('relative w-full max-w-chat mx-auto z-prompt', {
196
- 'sticky bottom-0': chatStarted,
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}