File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -109,7 +109,7 @@ export default function BranchToolbar({
109109 if ( ! activeThreadId || ! activeProject ) return null ;
110110
111111 return (
112- < div className = "mx-auto flex w-full max-w-3xl items-center justify-between px-5 pb-3 pt-1" >
112+ < div className = "mx-auto flex w-full max-w-7xl items-center justify-between px-5 pb-3 pt-1" >
113113 { envLocked || activeWorktreePath ? (
114114 < span className = "inline-flex items-center gap-1 border border-transparent px-[calc(--spacing(3)-1px)] text-sm font-medium text-muted-foreground/70 sm:text-xs" >
115115 { activeWorktreePath ? (
Original file line number Diff line number Diff line change @@ -3789,7 +3789,7 @@ export default function ChatView({ threadId }: ChatViewProps) {
37893789 < form
37903790 ref = { composerFormRef }
37913791 onSubmit = { onSend }
3792- className = "mx-auto w-full min-w-0 max-w-3xl "
3792+ className = "mx-auto w-full min-w-0 max-w-7xl "
37933793 data-chat-composer-form = "true"
37943794 >
37953795 < input
Original file line number Diff line number Diff line change @@ -597,7 +597,7 @@ export const MessagesTimeline = memo(function MessagesTimeline({
597597 < div
598598 ref = { timelineRootRef }
599599 data-timeline-root = "true"
600- className = "mx-auto w-full min-w-0 max-w-3xl overflow-x-hidden"
600+ className = "mx-auto w-full min-w-0 max-w-7xl overflow-x-hidden"
601601 >
602602 { virtualizedRowCount > 0 && (
603603 < div className = "relative" style = { { height : `${ rowVirtualizer . getTotalSize ( ) } px` } } >
Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ export const ProviderHealthBanner = memo(function ProviderHealthBanner({
2525 const title = `${ providerLabel } provider status` ;
2626
2727 return (
28- < div className = "pt-3 mx-auto max-w-3xl " >
28+ < div className = "pt-3 mx-auto max-w-7xl " >
2929 < Alert variant = { status . status === "error" ? "error" : "warning" } >
3030 < CircleAlertIcon />
3131 < AlertTitle > { title } </ AlertTitle >
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ export const ThreadErrorBanner = memo(function ThreadErrorBanner({
1111} ) {
1212 if ( ! error ) return null ;
1313 return (
14- < div className = "pt-3 mx-auto max-w-3xl " >
14+ < div className = "pt-3 mx-auto max-w-7xl " >
1515 < Alert variant = "error" >
1616 < CircleAlertIcon />
1717 < AlertDescription className = "line-clamp-3" title = { error } >
You can’t perform that action at this time.
0 commit comments