diff options
Diffstat (limited to 'src/view/com/notifications/FeedItem.tsx')
-rw-r--r-- | src/view/com/notifications/FeedItem.tsx | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/view/com/notifications/FeedItem.tsx b/src/view/com/notifications/FeedItem.tsx index 68f12b721..acd00a67d 100644 --- a/src/view/com/notifications/FeedItem.tsx +++ b/src/view/com/notifications/FeedItem.tsx @@ -90,10 +90,10 @@ export const FeedItem = observer(function FeedItem({ style={ item.isRead ? undefined - : [ - styles.outerUnread, - {backgroundColor: pal.colors.unreadNotifBg}, - ] + : { + backgroundColor: pal.colors.unreadNotifBg, + borderColor: pal.colors.unreadNotifBorder, + } } /> </Link> @@ -152,7 +152,10 @@ export const FeedItem = observer(function FeedItem({ pal.border, item.isRead ? undefined - : [styles.outerUnread, {backgroundColor: pal.colors.unreadNotifBg}], + : { + backgroundColor: pal.colors.unreadNotifBg, + borderColor: pal.colors.unreadNotifBorder, + }, ]} href={itemHref} title={itemTitle} @@ -391,9 +394,6 @@ const styles = StyleSheet.create({ paddingRight: 15, borderTopWidth: 1, }, - outerUnread: { - borderColor: colors.blue1, - }, layout: { flexDirection: 'row', }, |