Indent contacts in collab panel (#3773)

Marshall Bowers created

This PR indents contacts in the collab panel.

Release Notes:

- N/A

Change summary

crates/collab_ui2/src/collab_panel.rs | 4 ++++
1 file changed, 4 insertions(+)

Detailed changes

crates/collab_ui2/src/collab_panel.rs 🔗

@@ -1871,6 +1871,8 @@ impl CollabPanel {
         let github_login = SharedString::from(contact.user.github_login.clone());
         let item =
             ListItem::new(github_login.clone())
+                .indent_level(1)
+                .indent_step_size(px(20.))
                 .selected(is_selected)
                 .on_click(cx.listener(move |this, _, cx| this.call(user_id, cx)))
                 .child(
@@ -1968,6 +1970,8 @@ impl CollabPanel {
         };
 
         ListItem::new(github_login.clone())
+            .indent_level(1)
+            .indent_step_size(px(20.))
             .selected(is_selected)
             .child(
                 h_stack()