From d3abc617280948cf3d0d8d4b94766ad4845b4742 Mon Sep 17 00:00:00 2001 From: 5brian Date: Mon, 7 Apr 2025 16:26:55 -0400 Subject: [PATCH] breadcrumbs: Update multibuffer to match singleton (#28267) Before: https://github.com/user-attachments/assets/a2c8fe84-14f6-4cda-b51a-5ada3e2523b6 After: https://github.com/user-attachments/assets/559bcfe8-a40f-44cc-a626-b0544b6cea68 Release Notes: - N/A --- crates/breadcrumbs/src/breadcrumbs.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/crates/breadcrumbs/src/breadcrumbs.rs b/crates/breadcrumbs/src/breadcrumbs.rs index 78a4d858cc..57cb2a4df8 100644 --- a/crates/breadcrumbs/src/breadcrumbs.rs +++ b/crates/breadcrumbs/src/breadcrumbs.rs @@ -131,8 +131,9 @@ impl Render for Breadcrumbs { }), ), None => element - // Match the height of the `ButtonLike` in the other arm. + // Match the height and padding of the `ButtonLike` in the other arm. .h(rems_from_px(22.)) + .pl_1() .child(breadcrumbs_stack), } }