diff options
author | Paul Frazee <pfrazee@gmail.com> | 2022-12-28 15:53:06 -0600 |
---|---|---|
committer | Paul Frazee <pfrazee@gmail.com> | 2022-12-28 15:53:06 -0600 |
commit | 8f55e3149ec17dcbb39286670ff20729af1e9205 (patch) | |
tree | ab6087473002edf6829ef9a76b14598191ff1f36 /src/view/com/notifications/FeedItem.tsx | |
parent | 23e7ae49d46b39b7b66aa6413ed29eabd270cd1d (diff) | |
download | voidsky-8f55e3149ec17dcbb39286670ff20729af1e9205.tar.zst |
Update notifications
Diffstat (limited to 'src/view/com/notifications/FeedItem.tsx')
-rw-r--r-- | src/view/com/notifications/FeedItem.tsx | 16 |
1 files changed, 3 insertions, 13 deletions
diff --git a/src/view/com/notifications/FeedItem.tsx b/src/view/com/notifications/FeedItem.tsx index c6b286cdb..86f43ba41 100644 --- a/src/view/com/notifications/FeedItem.tsx +++ b/src/view/com/notifications/FeedItem.tsx @@ -55,10 +55,7 @@ export const FeedItem = observer(function FeedItem({ <Post uri={item.uri} initView={item.additionalPost} - style={[ - styles.outerMinimal, - item.isRead ? undefined : styles.outerUnread, - ]} + style={[item.isRead ? undefined : styles.outerUnread]} /> </Link> ) @@ -222,15 +219,8 @@ const styles = StyleSheet.create({ outer: { backgroundColor: colors.white, padding: 10, - borderRadius: 6, - margin: 2, - marginBottom: 0, - }, - outerMinimal: { - backgroundColor: colors.white, - borderRadius: 6, - margin: 2, - marginBottom: 0, + borderTopWidth: 1, + borderTopColor: colors.gray2, }, outerUnread: { backgroundColor: colors.unreadNotifBg, |