Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix(embedded): default mothership view to 60% width, remove minimum
  • Loading branch information
waleedlatif1 committed Mar 17, 2026
commit f910fce7a8d89c18dee8efa5f439721e3bf90f29
Original file line number Diff line number Diff line change
Expand Up @@ -60,11 +60,11 @@ export const MothershipView = memo(function MothershipView({
<div
className={cn(
'flex h-full flex-col overflow-hidden border-[var(--border)] transition-[width,min-width,border-width] duration-300 ease-out',
isCollapsed ? 'w-0 min-w-0 border-l-0' : 'w-[50%] min-w-[400px] border-l',
isCollapsed ? 'w-0 min-w-0 border-l-0' : 'w-[60%] border-l',
className
)}
>
<div className='flex min-h-0 min-w-[400px] flex-1 flex-col'>
<div className='flex min-h-0 flex-1 flex-col'>
<ResourceTabs
workspaceId={workspaceId}
chatId={chatId}
Expand Down