From a7977aa64dc8a4c600eb167d645de880e9964d68 Mon Sep 17 00:00:00 2001 From: Danilo Leal <67129314+danilo-leal@users.noreply.github.com> Date: Wed, 18 Sep 2024 17:18:56 +0200 Subject: [PATCH] Tweak multibuffer header padding (#18011) --- crates/editor/src/element.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/editor/src/element.rs b/crates/editor/src/element.rs index 7e2b3cc63f..47107b9754 100644 --- a/crates/editor/src/element.rs +++ b/crates/editor/src/element.rs @@ -2079,13 +2079,13 @@ impl EditorElement { .id(("path excerpt header", EntityId::from(block_id))) .w_full() .px(header_padding) + .pt(header_padding) .child( h_flex() .flex_basis(Length::Definite(DefiniteLength::Fraction(0.667))) .id("path header block") .h(2. * cx.line_height()) - .pl(gpui::px(12.)) - .pr(gpui::px(8.)) + .px(gpui::px(12.)) .rounded_md() .shadow_md() .border_1()