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/ExternalLinkEmbed.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/ExternalLinkEmbed.tsx')
-rw-r--r-- | src/view/com/util/post-embeds/ExternalLinkEmbed.tsx | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/view/com/util/post-embeds/ExternalLinkEmbed.tsx b/src/view/com/util/post-embeds/ExternalLinkEmbed.tsx index 2fc53a4df..54e1eb4d5 100644 --- a/src/view/com/util/post-embeds/ExternalLinkEmbed.tsx +++ b/src/view/com/util/post-embeds/ExternalLinkEmbed.tsx @@ -59,15 +59,15 @@ export const ExternalLinkEmbed = ({ } return ( - <View style={[a.flex_col, a.w_full]}> + <View style={[a.flex_col, a.rounded_md, a.w_full]}> <LinkWrapper link={link} onOpen={onOpen} style={style}> {imageUri && !embedPlayerParams ? ( <View> <Image style={{ aspectRatio: 1.91, - borderTopRightRadius: 8, - borderTopLeftRadius: 8, + borderTopRightRadius: a.rounded_md.borderRadius, + borderTopLeftRadius: a.rounded_md.borderRadius, }} source={{uri: imageUri}} accessibilityIgnoresInvertColors @@ -101,11 +101,11 @@ export const ExternalLinkEmbed = ({ a.py_sm, t.atoms.border_contrast_low, { - borderBottomRightRadius: 8, - borderBottomLeftRadius: 8, + borderBottomRightRadius: a.rounded_md.borderRadius, + borderBottomLeftRadius: a.rounded_md.borderRadius, paddingHorizontal: isMobile ? 10 : 14, }, - !imageUri && !embedPlayerParams && [a.border, a.rounded_sm], + !imageUri && !embedPlayerParams && [a.border, a.rounded_md], ]}> <Text type="sm" |