Improve post spacing (#8589)

This commit is contained in:
Samuel Newman
2025-07-01 23:24:03 +03:00
committed by GitHub
parent 5f291b5ca8
commit 9fdd98d8b4
3 changed files with 14 additions and 12 deletions
+8 -1
View File
@@ -185,7 +185,14 @@ let PostControls = ({
}
return (
<View style={[a.flex_row, a.justify_between, a.align_center, style]}>
<View
style={[
a.flex_row,
a.justify_between,
a.align_center,
!big && a.pt_2xs,
style,
]}>
<View
style={[
big ? a.align_center : [a.flex_1, a.align_start, {marginLeft: -6}],
@@ -218,17 +218,13 @@ const ThreadItemTreeReplyChildReplyLine = memo(
}) {
const t = useTheme()
return (
<View style={[a.relative, {width: TREE_AVI_PLUS_SPACE}]}>
<View style={[a.relative, a.pt_2xs, {width: TREE_AVI_PLUS_SPACE}]}>
{item.ui.showChildReplyLine && (
<View
style={[
a.flex_1,
t.atoms.border_contrast_low,
{
borderRightWidth: 2,
width: '50%',
left: -1,
},
{borderRightWidth: 2, width: '50%', left: -1},
]}
/>
)}
@@ -331,12 +327,12 @@ const ThreadItemTreePostInner = memo(function ThreadItemTreePostInner({
timestamp={post.indexedAt}
postHref={postHref}
avatarSize={TREE_AVI_WIDTH}
style={[a.pb_2xs]}
style={[a.pb_0]}
showAvatar
/>
<View style={[a.flex_row]}>
<ThreadItemTreeReplyChildReplyLine item={item} />
<View style={[a.flex_1]}>
<View style={[a.flex_1, a.pl_2xs]}>
<LabelsOnMyPost post={post} style={[a.pb_2xs]} />
<PostAlerts
modui={moderation.ui('contentList')}
@@ -360,7 +356,7 @@ const ThreadItemTreePostInner = memo(function ThreadItemTreePostInner({
/>
)}
</>
) : undefined}
) : null}
{post.embed && (
<View style={[a.pb_xs]}>
<Embed
+1 -2
View File
@@ -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,
},