From cc805e04bf0574b255216c5b08ca276ae5be7dea Mon Sep 17 00:00:00 2001 From: Christoph Brandau Date: Sun, 12 Jul 2026 23:38:44 +0200 Subject: [PATCH] style(ui): improve spacing and alignment of repository toolbar Adjusts the CSS styling for the primary repository toolbar to enhance its visual organization. These changes introduce specific padding and margin rules, ensuring that various utility groups are properly centered and spaced vertically. This improves the overall aesthetic consistency of the component. --- src/app.css | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/src/app.css b/src/app.css index 9a8c324..f4a86b1 100644 --- a/src/app.css +++ b/src/app.css @@ -5810,6 +5810,17 @@ input:focus, textarea:focus, select:focus { box-shadow: 0 0 0 3px color-mix(in s .repo-toolbar > .repo-toolbar-divider.utility { order: 5; } .repo-toolbar > .repo-utility-actions { order: 6; } +/* Center every toolbar group with the same breathing room above and below. */ +.repo-toolbar { + align-items: center; + padding-top: 8px; + padding-bottom: 8px; +} +.repo-toolbar > .repo-toolbar-sync, +.repo-toolbar > .repo-inspect-actions, +.repo-toolbar > .repo-utility-actions { margin-bottom: 0; } +.repo-toolbar > .repo-toolbar-divider { margin-top: 0; margin-bottom: 0; } + /* Compact change map for long compare and line-patch views. */ .split-diff-shell, .line-patch-workspace {