Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions src/components/AccountNotifications.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ export const AccountNotifications: FC<IAccountNotifications> = (
{showAccountHostname && (
<div
className={cn(
'group flex items-center justify-between px-3 py-2 text-sm font-semibold',
'group flex items-center justify-between px-3 py-1.5 text-sm font-semibold',
'bg-gray-300 dark:bg-gray-darkest dark:text-white',
Opacity.LOW,
)}
Expand All @@ -84,7 +84,6 @@ export const AccountNotifications: FC<IAccountNotifications> = (
event.stopPropagation();
openAccountProfile(account);
}}
className="opacity-80"
>
@{account.user.login}
</button>
Expand Down
2 changes: 1 addition & 1 deletion src/components/NotificationRow.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ export const NotificationRow: FC<INotificationRow> = ({
{groupByDate && (
<div
className={cn(
'mb-1 flex items-center gap-1 text-xs',
'mb-1 flex items-center gap-1 text-xs font-medium',
Opacity.MEDIUM,
)}
title={repoSlug}
Expand Down
6 changes: 3 additions & 3 deletions src/components/RepositoryNotifications.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -62,19 +62,19 @@ export const RepositoryNotifications: FC<IRepositoryNotifications> = ({
return (
<>
<div
className="group flex items-center justify-between bg-gray-100 px-3 py-2 dark:bg-gray-darker dark:text-white"
className="group flex justify-between bg-gray-100 px-3 py-1.5 dark:bg-gray-darker dark:text-white"
onClick={toggleRepositoryNotifications}
>
<div
className={cn(
'flex flex-1 space-x-3 overflow-hidden overflow-ellipsis whitespace-nowrap text-sm font-medium',
'flex flex-1 gap-4 items-center overflow-hidden overflow-ellipsis whitespace-nowrap text-sm font-medium',
Opacity.MEDIUM,
)}
>
<AvatarIcon
title={repoName}
url={avatarUrl}
size={Size.LARGE}
size={Size.XSMALL}
defaultIcon={MarkGithubIcon}
/>
<span
Expand Down
35 changes: 13 additions & 22 deletions src/components/__snapshots__/AccountNotifications.test.tsx.snap

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions src/components/__snapshots__/NotificationRow.test.tsx.snap

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading