diff options
author | Samuel Newman <mozzius@protonmail.com> | 2024-09-20 20:47:28 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-20 14:47:28 -0500 |
commit | 79a2f8d5280230a125b42c60bbb5b9e4be4f9109 (patch) | |
tree | 5eb115f1ecbde98e3a541a497dc683e44f295169 /src/view/com/util/post-embeds/QuoteEmbed.tsx | |
parent | c85a271ef63ac006bf10f71adae102552298b661 (diff) | |
download | voidsky-79a2f8d5280230a125b42c60bbb5b9e4be4f9109.tar.zst |
Increase rounding for all embeds (#5421)
* tweak image styles * fix reply image preview and covert to atoms * increase rounding on media inset border * decrease gap on desktop * fix inset styles * increase rounding on embeds to `md` * Couple edge cases --------- Co-authored-by: Eric Bailey <git@esb.lol>
Diffstat (limited to 'src/view/com/util/post-embeds/QuoteEmbed.tsx')
-rw-r--r-- | src/view/com/util/post-embeds/QuoteEmbed.tsx | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/view/com/util/post-embeds/QuoteEmbed.tsx b/src/view/com/util/post-embeds/QuoteEmbed.tsx index d50119025..79e326404 100644 --- a/src/view/com/util/post-embeds/QuoteEmbed.tsx +++ b/src/view/com/util/post-embeds/QuoteEmbed.tsx @@ -219,7 +219,14 @@ export function QuoteEmbed({ return ( <ContentHider modui={moderation?.ui('contentList')} - style={[styles.container, a.border, t.atoms.border_contrast_low, style]} + style={[ + a.rounded_md, + a.p_md, + a.mt_sm, + a.border, + t.atoms.border_contrast_low, + style, + ]} childContainerStyle={[a.pt_sm]}> <Link hoverStyle={{borderColor: pal.colors.borderLinkHover}} @@ -293,13 +300,6 @@ function viewRecordToPostView( } const styles = StyleSheet.create({ - container: { - borderRadius: 8, - marginTop: 8, - paddingVertical: 12, - paddingHorizontal: 12, - borderWidth: StyleSheet.hairlineWidth, - }, errorContainer: { flexDirection: 'row', alignItems: 'center', |