Skip to content

Commit

Permalink
style: notification type icon size (#1251)
Browse files Browse the repository at this point in the history
* style: notification type icon size

* chore: update snapshots

* fix: middleground in icon size
  • Loading branch information
afonsojramos authored Jun 16, 2024
1 parent bac98a9 commit e671125
Show file tree
Hide file tree
Showing 2 changed files with 116 additions and 72 deletions.
4 changes: 2 additions & 2 deletions src/components/NotificationRow.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ export const NotificationRow: FC<IProps> = ({ notification }) => {
className={cn('mr-3 flex w-5 items-center justify-center', iconColor)}
title={notificationTitle}
>
<NotificationIcon size={18} aria-label={notification.subject.type} />
<NotificationIcon size={16} aria-label={notification.subject.type} />
</div>

<div
Expand Down Expand Up @@ -154,7 +154,7 @@ export const NotificationRow: FC<IProps> = ({ notification }) => {
<div title={reason.description}>{reason.title}</div>
<div title={updatedLabel}>{updatedAt}</div>
{settings.showPills && (
<div>
<div className="flex">
{notification.subject?.linkedIssues?.length > 0 && (
<PillButton
title={linkedIssuesPillDescription}
Expand Down
Loading

0 comments on commit e671125

Please sign in to comment.