diff --git a/crates/editor/src/code_context_menus.rs b/crates/editor/src/code_context_menus.rs index 89d47af0d37fcc7637f3d888775c4ba6af749e5c..0908ad48fbdd6c9f1b9bad0af1d967b6e865ad1c 100644 --- a/crates/editor/src/code_context_menus.rs +++ b/crates/editor/src/code_context_menus.rs @@ -543,7 +543,14 @@ impl CompletionsMenu { let start_slot = completion .color() - .map(|color| div().size_4().bg(color).rounded_xs().into_any_element()) + .map(|color| { + div() + .flex_shrink_0() + .size_3p5() + .rounded_xs() + .bg(color) + .into_any_element() + }) .or_else(|| { completion.icon_path.as_ref().map(|path| { Icon::from_path(path)