From 23e7ae49d46b39b7b66aa6413ed29eabd270cd1d Mon Sep 17 00:00:00 2001 From: Paul Frazee Date: Wed, 28 Dec 2022 15:50:28 -0600 Subject: Tighten up spacing and dividers --- src/view/com/posts/FeedItem.tsx | 28 ++++++++++------------------ 1 file changed, 10 insertions(+), 18 deletions(-) (limited to 'src/view/com/posts/FeedItem.tsx') diff --git a/src/view/com/posts/FeedItem.tsx b/src/view/com/posts/FeedItem.tsx index 8670ed9a3..f456fbab8 100644 --- a/src/view/com/posts/FeedItem.tsx +++ b/src/view/com/posts/FeedItem.tsx @@ -103,9 +103,7 @@ export const FeedItem = observer(function ({ return ( <> {isChild && !item._isThreadChild && item.replyParent ? ( - - - + ) : undefined} {item._isThreadChild && } @@ -240,29 +238,23 @@ export const FeedItem = observer(function ({ const styles = StyleSheet.create({ outer: { - borderRadius: 6, - margin: 2, - marginBottom: 0, + borderTopWidth: 1, + borderTopColor: colors.gray2, backgroundColor: colors.white, padding: 10, }, outerNoTop: { - marginTop: 0, + borderTopWidth: 0, paddingTop: 0, borderTopLeftRadius: 0, borderTopRightRadius: 0, }, outerSmallTop: { - marginTop: 0, + borderTopWidth: 0, paddingTop: 8, - borderTopLeftRadius: 0, - borderTopRightRadius: 0, }, outerNoBottom: { - marginBottom: 0, - paddingBottom: 0, - borderBottomLeftRadius: 0, - borderBottomRightRadius: 0, + paddingBottom: 2, }, topReplyLine: { position: 'absolute', @@ -293,7 +285,7 @@ const styles = StyleSheet.create({ }, layoutAvi: { width: 60, - paddingTop: 5, + paddingTop: 0, }, layoutContent: { flex: 1, @@ -316,12 +308,12 @@ const styles = StyleSheet.create({ viewFullThread: { backgroundColor: colors.white, paddingTop: 12, - paddingBottom: 4, - paddingLeft: 72, + paddingBottom: 2, + paddingLeft: 70, }, viewFullThreadDots: { position: 'absolute', - left: 35, + left: 33, top: 0, }, viewFullThreadText: { -- cgit 1.4.1