diff options
author | Ollie Hsieh <renahlee@outlook.com> | 2023-04-18 10:53:47 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-18 12:53:47 -0500 |
commit | c2a4ffc99f65a7b53fe0420df67065232ae8e4cc (patch) | |
tree | 2d7f03a76264d0915da87cd9a24bfe85afb3d0bc /src/view/com/util/post-embeds/QuoteEmbed.tsx | |
parent | 10621e86e4379ff05b2262a659b8512d80203a4b (diff) | |
download | voidsky-c2a4ffc99f65a7b53fe0420df67065232ae8e4cc.tar.zst |
Quote post legibility (#486)
Diffstat (limited to 'src/view/com/util/post-embeds/QuoteEmbed.tsx')
-rw-r--r-- | src/view/com/util/post-embeds/QuoteEmbed.tsx | 19 |
1 files changed, 8 insertions, 11 deletions
diff --git a/src/view/com/util/post-embeds/QuoteEmbed.tsx b/src/view/com/util/post-embeds/QuoteEmbed.tsx index 94e837238..3836132d5 100644 --- a/src/view/com/util/post-embeds/QuoteEmbed.tsx +++ b/src/view/com/util/post-embeds/QuoteEmbed.tsx @@ -35,7 +35,7 @@ export function QuoteEmbed({ ) return ( <Link - style={[styles.container, pal.border, style]} + style={[styles.container, pal.borderDark, style]} href={itemHref} title={itemTitle}> <PostMeta @@ -46,15 +46,11 @@ export function QuoteEmbed({ postHref={itemHref} timestamp={quote.indexedAt} /> - <Text type="post-text" style={pal.text} numberOfLines={6}> - {isEmpty ? ( - <Text style={pal.link} lineHeight={1.5}> - View post - </Text> - ) : ( - quote.text - )} - </Text> + {!isEmpty ? ( + <Text type="post-text" style={pal.text} numberOfLines={6}> + {quote.text} + </Text> + ) : null} {AppBskyEmbedImages.isView(imagesEmbed) && ( <PostEmbeds embed={imagesEmbed} /> )} @@ -70,7 +66,8 @@ export default QuoteEmbed const styles = StyleSheet.create({ container: { borderRadius: 8, - paddingVertical: 8, + marginTop: 8, + paddingVertical: 12, paddingHorizontal: 12, borderWidth: 1, }, |