diff --git a/crates/search/src/project_search.rs b/crates/search/src/project_search.rs index e746d75cdda033cd812a493dca6d249b8fdb0e5a..e2ad89117f750ad5522e8b70e6162d2cc8a7b6c2 100644 --- a/crates/search/src/project_search.rs +++ b/crates/search/src/project_search.rs @@ -1970,6 +1970,7 @@ impl View for ProjectSearchBar { ) .with_children(matches) .aligned() + .top() .left(), ) .contained() @@ -2015,6 +2016,7 @@ impl View for ProjectSearchBar { .with_style(theme.search.container) .aligned() .right() + .top() .flex(1., true), ) .with_children( @@ -2027,6 +2029,7 @@ impl View for ProjectSearchBar { .flex(1., true), ) .contained() + .with_uniform_padding(theme.workspace.toolbar.height / 3.) .flex_float() .into_any_named("project search") } else { @@ -2060,9 +2063,9 @@ impl ToolbarItemView for ProjectSearchBar { .as_ref() .map(|search| { let offset = search.read(cx).filters_enabled as usize; - 1 + offset + 2 + offset }) - .unwrap_or_else(|| 1) + .unwrap_or_else(|| 2) } }