Skip to content

Commit c5b888b

Browse files
fix: prevent threads container from shrinking with viewport
1 parent 734f812 commit c5b888b

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

app/page.tsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,8 @@ function RunFile() {
3535
<Chat
3636
showAssistantName
3737
classNames={{
38-
chatBar: 'w-full mx-auto lg:w-3/4 2xl:w-1/2',
39-
messages: 'w-full mx-auto lg:w-3/4 2xl:w-1/2',
38+
chatBar: 'w-full mx-auto xl:w-3/4 2xl:w-1/2',
39+
messages: 'w-full mx-auto xl:w-3/4 2xl:w-1/2',
4040
}}
4141
/>
4242
</div>

components/threads.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ const Threads: React.FC<ThreadsProps> = ({ onOpenExplore }: ThreadsProps) => {
4040
return (
4141
<div
4242
className={clsx(
43-
`relative border-r-1 dark:border-r-zinc-800 flex flex-col transition-all duration-300 ease-in-out`,
43+
`relative border-r-1 dark:border-r-zinc-800 flex flex-col transition-all duration-300 ease-in-out shrink-0`,
4444
{
4545
'w-[80px]': isCollapsed,
4646
'w-[350px]': !isCollapsed,

0 commit comments

Comments
 (0)