inbox: Size unread focus ring without shifting rows.

This commit is contained in:
Karl Stolley 2024-06-27 12:17:11 -04:00 committed by Tim Abbott
parent 18e5b3ab6b
commit d0f5d93f4b
1 changed files with 5 additions and 1 deletions

View File

@ -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);