From d0f5d93f4ba3e0d47e2b423585e93156466d4d76 Mon Sep 17 00:00:00 2001 From: Karl Stolley Date: Thu, 27 Jun 2024 12:17:11 -0400 Subject: [PATCH] inbox: Size unread focus ring without shifting rows. --- web/styles/inbox.css | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/web/styles/inbox.css b/web/styles/inbox.css index c79726ccd5..031cf6f95e 100644 --- a/web/styles/inbox.css +++ b/web/styles/inbox.css @@ -335,7 +335,11 @@ align-items: center; justify-content: center; border-radius: 3px; - padding: 5px; + padding: 0 5px; + /* Stretch to the row to keep unread + count from affecting overall row + size as test scales up. */ + align-self: stretch; &:focus { outline: 2px solid var(--color-outline-focus);