Skip to content

Commit f5af6fd

Browse files
committed
Merge branch 'main' into refactor/primer-design-system
Signed-off-by: Adam Setch <[email protected]>
1 parent f543d92 commit f5af6fd

File tree

10 files changed

+277
-262
lines changed

10 files changed

+277
-262
lines changed

src/renderer/components/buttons/PillButton.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ export const PillButton: FC<IPillButton> = (props: IPillButton) => {
1818
<button
1919
title={props.title}
2020
type="button"
21-
className="flex gap-1 items-center m-0.5 rounded-full bg-gray-100 px-1 text-xxs hover:bg-gray-200 dark:bg-gray-800 dark:hover:bg-gray-700"
21+
className="flex gap-1 items-center text-xxs px-1 m-0.5 rounded-full bg-gray-100 hover:bg-gray-200 dark:bg-gray-800 dark:hover:bg-gray-700"
2222
>
2323
<Stack direction="horizontal" align="center" gap="condensed">
2424
<Octicon icon={props.icon} size={Size.XSMALL} className={props.color} />

src/renderer/components/buttons/__snapshots__/PillButton.test.tsx.snap

Lines changed: 8 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/renderer/components/notifications/NotificationRow.tsx

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -94,9 +94,13 @@ export const NotificationRow: FC<INotificationRow> = ({
9494
(isRead || showAsRead) && Opacity.READ,
9595
)}
9696
>
97-
<div className={cn('mr-3 flex items-center justify-center', iconColor)}>
97+
<div className="mr-3 flex items-center justify-center">
9898
<Tooltip text={notificationType} direction="e">
99-
<Octicon icon={NotificationIcon} size={Size.LARGE} />
99+
<Octicon
100+
icon={NotificationIcon}
101+
size={Size.LARGE}
102+
className={iconColor}
103+
/>
100104
</Tooltip>
101105
</div>
102106

src/renderer/components/notifications/__snapshots__/AccountNotifications.test.tsx.snap

Lines changed: 18 additions & 18 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)