File tree Expand file tree Collapse file tree 3 files changed +6
-3
lines changed
apps/mobile/src/features/agent/components Expand file tree Collapse file tree 3 files changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ interface AgentMessageProps {
66
77export function AgentMessage ( { content } : AgentMessageProps ) {
88 return (
9- < View className = "mb-3 max-w-[95%] py-1" >
9+ < View className = "mb-3 max-w-[95%] px-4 py-1" >
1010 < Text className = "font-mono text-[13px] text-neutral-200 leading-5" >
1111 { content }
1212 </ Text >
Original file line number Diff line number Diff line change @@ -191,7 +191,10 @@ export function AgentSessionView({
191191 renderItem = { renderMessage }
192192 keyExtractor = { ( item ) => item . id }
193193 inverted
194- contentContainerStyle = { { flexDirection : "column-reverse" , padding : 16 } }
194+ contentContainerStyle = { {
195+ flexDirection : "column-reverse" ,
196+ paddingVertical : 16 ,
197+ } }
195198 ListHeaderComponent = {
196199 isPromptPending ? (
197200 < View className = "mb-2 flex-row items-center gap-2" >
Original file line number Diff line number Diff line change @@ -45,7 +45,7 @@ export function ToolCallBlock({
4545 const displayTitle = formatToolTitle ( toolName , args ) ;
4646
4747 return (
48- < View className = "py-0.5" >
48+ < View className = "px-4 py-0.5" >
4949 < Pressable
5050 onPress = { ( ) => hasContent && setIsOpen ( ! isOpen ) }
5151 className = "flex-row gap-2 items-center"
You can’t perform that action at this time.
0 commit comments