File tree Expand file tree Collapse file tree
packages/ui-components/src/components/assistant-ui Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -59,7 +59,7 @@ const AssistantTopBar = ({
5959 return (
6060 < div
6161 className = { cn (
62- 'flex flex-col px-4 py-2 gap-2 flex-shrink-0 text-md dark:text-primary font-bold border-b border-gray-200' ,
62+ 'flex flex-col px-4 py-2 gap-[7px] flex-shrink-0 text-md dark:text-primary font-bold border-b border-gray-200' ,
6363 ) }
6464 >
6565 < div className = "flex justify-between items-center gap-2" >
@@ -134,15 +134,18 @@ const AssistantTopBar = ({
134134 </ div >
135135 </ div >
136136 { isStepSettingsMode && (
137- < div className = "flex items-center gap-2 min-w-0" >
137+ < div className = "flex items-center gap-2 min-w-0 pl-1 " >
138138 < BlockIcon
139139 logoUrl = { stepLogoUrl }
140140 displayName = { blockDisplayName }
141141 showTooltip = { false }
142- size = "sm "
142+ className = "size-[16px] "
143143 />
144- < span className = "min-w-0 truncate text-sm font-normal" >
145- { blockDisplayName } ({ stepIndex } . { stepDisplayName } )
144+ < span className = "min-w-0 truncate text-xs text-gray-500 font-medium" >
145+ { blockDisplayName } { ' ' }
146+ < span className = "italic" >
147+ ( { stepIndex } . { stepDisplayName } )
148+ </ span >
146149 </ span >
147150 </ div >
148151 ) }
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ import { AssistantUiChatContainer } from './assistant-ui-chat-container';
1515import { ConnectionStatusProps } from './types' ;
1616
1717const COLLAPSED_HEIGHT = 57 ;
18- const DOCKED_HEIGHT = 450 ;
18+ const DOCKED_HEIGHT = 700 ;
1919const EXPANDED_HEIGHT_OFFSET = 122 ;
2020const FULL_WIDTH_HEIGHT = 100 ;
2121const EXPANDED_WIDTH_OFFSET = 40 ;
You can’t perform that action at this time.
0 commit comments