diff options
author | Samuel Newman <mozzius@protonmail.com> | 2025-02-12 19:17:58 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-02-12 19:17:58 +0000 |
commit | 521a764d4f896518af7f668e2d196b720461ec13 (patch) | |
tree | 32ad47291fc91141518dbaccd5e9a78ce71c27f3 /src/view/com/util/post-embeds/QuoteEmbed.tsx | |
parent | 7d694f605a8ba73b149b7de92892a915d339cbc7 (diff) | |
download | voidsky-521a764d4f896518af7f668e2d196b720461ec13.tar.zst |
fix quote & feed padding not being pressable (#7694)
Diffstat (limited to 'src/view/com/util/post-embeds/QuoteEmbed.tsx')
-rw-r--r-- | src/view/com/util/post-embeds/QuoteEmbed.tsx | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/view/com/util/post-embeds/QuoteEmbed.tsx b/src/view/com/util/post-embeds/QuoteEmbed.tsx index cb549f7cd..7b9bd20bf 100644 --- a/src/view/com/util/post-embeds/QuoteEmbed.tsx +++ b/src/view/com/util/post-embeds/QuoteEmbed.tsx @@ -221,16 +221,15 @@ export function QuoteEmbed({ modui={moderation?.ui('contentList')} style={[ a.rounded_md, - a.p_md, a.mt_sm, a.border, t.atoms.border_contrast_low, style, - ]} - childContainerStyle={[a.pt_sm]}> + ]}> <SubtleWebHover hover={hover} /> <Link hoverStyle={{borderColor: pal.colors.borderLinkHover}} + style={[a.p_md, a.pt_sm]} href={itemHref} title={itemTitle} onBeforePress={onBeforePress}> |