Status bar: Reduce right tools lateral margin (#21329)
yoleuh
created
Closes #21316
| Before | After |
|--------|-------|
|
|
|
Changes:
changed `Base08` to `Base04` in `render_right_tools`
Release Notes:
- N/A
Change summary
crates/workspace/src/status_bar.rs | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
Detailed changes
@@ -71,7 +71,7 @@ impl StatusBar {
fn render_right_tools(&self, cx: &mut ViewContext<Self>) -> 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()))
}
}