Skip to content

Commit f910fce

Browse files
committed
fix(embedded): default mothership view to 60% width, remove minimum
1 parent 201228c commit f910fce

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

apps/sim/app/workspace/[workspaceId]/home/components/mothership-view/mothership-view.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,11 +60,11 @@ export const MothershipView = memo(function MothershipView({
6060
<div
6161
className={cn(
6262
'flex h-full flex-col overflow-hidden border-[var(--border)] transition-[width,min-width,border-width] duration-300 ease-out',
63-
isCollapsed ? 'w-0 min-w-0 border-l-0' : 'w-[50%] min-w-[400px] border-l',
63+
isCollapsed ? 'w-0 min-w-0 border-l-0' : 'w-[60%] border-l',
6464
className
6565
)}
6666
>
67-
<div className='flex min-h-0 min-w-[400px] flex-1 flex-col'>
67+
<div className='flex min-h-0 flex-1 flex-col'>
6868
<ResourceTabs
6969
workspaceId={workspaceId}
7070
chatId={chatId}

0 commit comments

Comments
 (0)