diff options
Diffstat (limited to 'src/view/com/posts/FeedItem.tsx')
-rw-r--r-- | src/view/com/posts/FeedItem.tsx | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/view/com/posts/FeedItem.tsx b/src/view/com/posts/FeedItem.tsx index e66858ff6..984fde289 100644 --- a/src/view/com/posts/FeedItem.tsx +++ b/src/view/com/posts/FeedItem.tsx @@ -193,7 +193,7 @@ export const FeedItem = observer(function FeedItem({ style={styles.postText} /> </View> - <PostEmbeds embed={item.embed} style={{marginBottom: 10}} /> + <PostEmbeds embed={item.embed} style={styles.postEmbeds} /> <PostCtrls replyCount={item.replyCount} repostCount={item.repostCount} @@ -278,4 +278,7 @@ const styles = StyleSheet.create({ fontSize: 16, lineHeight: 20.8, // 1.3 of 16px }, + postEmbeds: { + marginBottom: 10, + }, }) |