Skip to content

Commit e671125

Browse files
authored
style: notification type icon size (#1251)
* style: notification type icon size * chore: update snapshots * fix: middleground in icon size
1 parent bac98a9 commit e671125

File tree

2 files changed

+116
-72
lines changed

2 files changed

+116
-72
lines changed

src/components/NotificationRow.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ export const NotificationRow: FC<IProps> = ({ notification }) => {
108108
className={cn('mr-3 flex w-5 items-center justify-center', iconColor)}
109109
title={notificationTitle}
110110
>
111-
<NotificationIcon size={18} aria-label={notification.subject.type} />
111+
<NotificationIcon size={16} aria-label={notification.subject.type} />
112112
</div>
113113

114114
<div
@@ -154,7 +154,7 @@ export const NotificationRow: FC<IProps> = ({ notification }) => {
154154
<div title={reason.description}>{reason.title}</div>
155155
<div title={updatedLabel}>{updatedAt}</div>
156156
{settings.showPills && (
157-
<div>
157+
<div className="flex">
158158
{notification.subject?.linkedIssues?.length > 0 && (
159159
<PillButton
160160
title={linkedIssuesPillDescription}

0 commit comments

Comments
 (0)