Skip to content

Commit

Permalink
Merge pull request #350 from wonderwhy-er/Add-background-for-chat-window
Browse files Browse the repository at this point in the history
(Ready for review) - Small visual fix. Add background for chat window(currently transparent and looks ugly)
  • Loading branch information
wonderwhy-er authored Nov 20, 2024
2 parents 9c657b9 + b0b6760 commit 166c79d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ dist-ssr
*.sln
*.sw?

/.history
/.cache
/build
.env.local
Expand Down
8 changes: 5 additions & 3 deletions app/components/chat/BaseChat.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -192,9 +192,11 @@ export const BaseChat = React.forwardRef<HTMLDivElement, BaseChatProps>(
}}
</ClientOnly>
<div
className={classNames('relative w-full max-w-chat mx-auto z-prompt', {
'sticky bottom-0': chatStarted,
})}
className={classNames(
'bg-bolt-elements-background-depth-2 border-y border-bolt-elements-borderColor relative w-full max-w-chat mx-auto z-prompt',
{
'sticky bottom-0': chatStarted
})}
>
<ModelSelector
key={provider?.name + ':' + modelList.length}
Expand Down

0 comments on commit 166c79d

Please sign in to comment.