From c17280149f6770a00d42de012c42e2d7601647a5 Mon Sep 17 00:00:00 2001 From: silverwind Date: Wed, 11 Feb 2026 02:01:26 +0100 Subject: [PATCH] Fix vertical alignment of `.commit-sign-badge` children (#36570) Before: Avatar and lock icon was slightly misaligned vertically and span was `20px` high: Screenshot 2026-02-09 at 14 38 45 After: Fixed alignment and span is `16px`, same as avatar: Screenshot 2026-02-09 at 14 39 30 --- web_src/css/repo/commit-sign.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/web_src/css/repo/commit-sign.css b/web_src/css/repo/commit-sign.css index 56eee62ffc..101eb6d528 100644 --- a/web_src/css/repo/commit-sign.css +++ b/web_src/css/repo/commit-sign.css @@ -7,6 +7,10 @@ flex-shrink: 0; } +.ui.label.commit-sign-badge > * { + display: flex; +} + .ui.label.commit-id-short { font-family: var(--fonts-monospace); height: 24px;