diff --git a/app/components/Notifications/NotificationListItem.tsx b/app/components/Notifications/NotificationListItem.tsx
index 8998a6671..58bedd34b 100644
--- a/app/components/Notifications/NotificationListItem.tsx
+++ b/app/components/Notifications/NotificationListItem.tsx
@@ -40,7 +40,7 @@ function NotificationListItem({ notification, onNavigate }: Props) {
};
return (
-
+
@@ -67,10 +67,16 @@ function NotificationListItem({ notification, onNavigate }: Props) {
{notification.viewedAt ? null : }
-
+
);
}
+const StyledLink = styled(Link)`
+ display: block;
+ margin: 0 8px;
+ cursor: var(--pointer);
+`;
+
const StyledCommentEditor = styled(CommentEditor)`
font-size: 0.9em;
margin-top: 4px;
@@ -86,13 +92,11 @@ const Container = styled(Flex)<{ $unread: boolean }>`
position: relative;
padding: 8px 12px;
padding-right: 40px;
- margin: 0 8px;
border-radius: 4px;
&:${hover},
&:active {
background: ${s("listItemHoverBackground")};
- cursor: var(--pointer);
}
`;