From de55bd8307fd683780e013aae581db7aa78f3b69 Mon Sep 17 00:00:00 2001 From: yoleuh Date: Fri, 29 Nov 2024 08:56:32 -0500 Subject: [PATCH] Status bar: Reduce right tools lateral margin (#21329) Closes #21316 | Before | After | |--------|-------| | ![image](https://github.com/user-attachments/assets/525d16b0-c1f0-4d93-9a8e-19112b927e78)| ![image](https://github.com/user-attachments/assets/c6947c3e-6b46-4498-a672-5f418f5faad0)| Changes: changed `Base08` to `Base04` in `render_right_tools` Release Notes: - N/A --- crates/workspace/src/status_bar.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/workspace/src/status_bar.rs b/crates/workspace/src/status_bar.rs index 274aee063c4eb33a17af8e5098597c39fc9682e5..585b2700b4a237804aabdeae5c30d1246258d8a9 100644 --- a/crates/workspace/src/status_bar.rs +++ b/crates/workspace/src/status_bar.rs @@ -71,7 +71,7 @@ impl StatusBar { fn render_right_tools(&self, cx: &mut ViewContext) -> impl IntoElement { h_flex() - .gap(DynamicSpacing::Base08.rems(cx)) + .gap(DynamicSpacing::Base04.rems(cx)) .children(self.right_items.iter().rev().map(|item| item.to_any())) } }