diff options
author | Samuel Newman <mozzius@protonmail.com> | 2025-07-01 23:24:03 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-07-01 13:24:03 -0700 |
commit | 9fdd98d8b430a072efc19698eb8c4be1a63ecfb4 (patch) | |
tree | be6afc8e934762d14486c071f2b240e8790c77da /src/view/com/posts | |
parent | 5f291b5ca8d21cb44f6d32039afdff6f45782012 (diff) | |
download | voidsky-9fdd98d8b430a072efc19698eb8c4be1a63ecfb4.tar.zst |
Improve post spacing (#8589)
Diffstat (limited to 'src/view/com/posts')
-rw-r--r-- | src/view/com/posts/PostFeedItem.tsx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/view/com/posts/PostFeedItem.tsx b/src/view/com/posts/PostFeedItem.tsx index 96d5df5e9..0593ba931 100644 --- a/src/view/com/posts/PostFeedItem.tsx +++ b/src/view/com/posts/PostFeedItem.tsx @@ -319,7 +319,7 @@ let FeedItemInner = ({ )} </View> - <View style={{paddingTop: 12, flexShrink: 1}}> + <View style={{paddingTop: 10, flexShrink: 1}}> {isReasonFeedSource(reason) ? ( <Link href={reason.href}> <Text @@ -660,7 +660,6 @@ const styles = StyleSheet.create({ includeReason: { flexDirection: 'row', alignItems: 'center', - marginTop: 2, marginBottom: 2, marginLeft: -16, }, |