From 8f55e3149ec17dcbb39286670ff20729af1e9205 Mon Sep 17 00:00:00 2001 From: Paul Frazee Date: Wed, 28 Dec 2022 15:53:06 -0600 Subject: Update notifications --- src/view/com/notifications/FeedItem.tsx | 16 +++------------- src/view/com/post/Post.tsx | 4 ++-- 2 files changed, 5 insertions(+), 15 deletions(-) (limited to 'src') 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({ ) @@ -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, diff --git a/src/view/com/post/Post.tsx b/src/view/com/post/Post.tsx index a058acf8e..8f2781ac2 100644 --- a/src/view/com/post/Post.tsx +++ b/src/view/com/post/Post.tsx @@ -205,10 +205,10 @@ export const Post = observer(function Post({ const styles = StyleSheet.create({ outer: { - marginTop: 1, - borderRadius: 6, backgroundColor: colors.white, padding: 10, + borderTopWidth: 1, + borderTopColor: colors.gray2, }, layout: { flexDirection: 'row', -- cgit 1.4.1