From e36e605c9651084d7237efd50b31e325df600d0d Mon Sep 17 00:00:00 2001 From: Danilo Leal <67129314+danilo-leal@users.noreply.github.com> Date: Fri, 16 Aug 2024 16:56:52 -0300 Subject: [PATCH] assistant: Fine-tune error toast design (#16373) Just some super small padding and absolute-positioning tweaks. --- Release Notes: - N/A --- crates/assistant/src/assistant_panel.rs | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/crates/assistant/src/assistant_panel.rs b/crates/assistant/src/assistant_panel.rs index be945abb53ee787fdb09e89cd963049a52e79fb4..057a2ff13ad76ba8cc8c412d07143f55dd88d51d 100644 --- a/crates/assistant/src/assistant_panel.rs +++ b/crates/assistant/src/assistant_panel.rs @@ -3506,7 +3506,8 @@ impl ContextEditor { }; Some( h_flex() - .p_3() + .px_3() + .py_2() .border_b_1() .border_color(cx.theme().colors().border_variant) .bg(cx.theme().colors().editor_background) @@ -3655,8 +3656,8 @@ impl Render for ContextEditor { this.child( div() .absolute() - .right_4() - .bottom_10() + .right_3() + .bottom_12() .max_w_96() .py_2() .px_3() @@ -3670,8 +3671,8 @@ impl Render for ContextEditor { this.child( div() .absolute() - .right_4() - .bottom_10() + .right_3() + .bottom_12() .max_w_96() .py_2() .px_3() @@ -3682,12 +3683,12 @@ impl Render for ContextEditor { .gap_0p5() .child( h_flex() - .gap_1() + .gap_1p5() .items_center() .child(Icon::new(IconName::XCircle).color(Color::Error)) .child( Label::new("Error interacting with language model") - .weight(FontWeight::SEMIBOLD), + .weight(FontWeight::MEDIUM), ), ) .child(