From 285bf9da5ce44e38f1c021e0e567c833e3998bff Mon Sep 17 00:00:00 2001 From: Scott Cooper Date: Fri, 14 Feb 2025 14:22:09 -0800 Subject: [PATCH] fix(issues): Left align commit authors --- static/app/components/versionHoverCard.tsx | 19 +++++++++++++------ 1 file changed, 13 insertions(+), 6 deletions(-) diff --git a/static/app/components/versionHoverCard.tsx b/static/app/components/versionHoverCard.tsx index 88b356b1ab2563..e6d18dd20d0464 100644 --- a/static/app/components/versionHoverCard.tsx +++ b/static/app/components/versionHoverCard.tsx @@ -136,12 +136,14 @@ function VersionHoverCard({ {release.authors.length}{' '} {release.authors.length !== 1 ? t('authors') : t('author')}{' '} - + + + ) : null} @@ -244,3 +246,8 @@ const CountSince = styled('div')` color: ${p => p.theme.headingColor}; font-size: ${p => p.theme.headerFontSize}; `; + +const AvatarListContainer = styled('div')` + display: flex; + padding-left: ${space(0.5)}; +`;