From 003e2c064f93f88c42a4c95a3e02930674c38d7a Mon Sep 17 00:00:00 2001 From: Danilo Leal Date: Thu, 18 Dec 2025 14:00:13 -0300 Subject: [PATCH] More UI iteration --- crates/ui/src/components/ai/tool_call.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/crates/ui/src/components/ai/tool_call.rs b/crates/ui/src/components/ai/tool_call.rs index 39ffe31c3a29140026560b91559c3175359ef02a..67157060c914c2dedf6d10e4c68587544fd4ae7b 100644 --- a/crates/ui/src/components/ai/tool_call.rs +++ b/crates/ui/src/components/ai/tool_call.rs @@ -62,7 +62,7 @@ impl RenderOnce for ToolCall { .child( h_flex() .w_full() - .when(self.use_card_layout, |this| this.px_1p5()) + .when(self.use_card_layout, |this| this.px_1()) .hover(|s| s.bg(cx.theme().colors().element_hover)) .gap_1p5() .rounded_xs() @@ -89,8 +89,8 @@ impl RenderOnce for ToolCall { .border_color(cx.theme().colors().border) .bg(cx.theme().colors().editor_background) } else { - this.pl_1() - .ml_1() + this.pl_4() + .ml_1p5() .border_l_1() .border_color(cx.theme().colors().border) }