Bluesky app fork with some witchin' additions 💫
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

add content hider padding (#8843)

authored by

Samuel Newman and committed by
GitHub
9d77b361 54f7af12

+9 -3
+9 -3
src/components/Post/Embed/index.tsx
··· 87 87 switch (embed.type) { 88 88 case 'images': { 89 89 return ( 90 - <ContentHider modui={rest.moderation?.ui('contentMedia')}> 90 + <ContentHider 91 + modui={rest.moderation?.ui('contentMedia')} 92 + activeStyle={[a.mt_sm]}> 91 93 <ImageEmbed embed={embed} {...rest} /> 92 94 </ContentHider> 93 95 ) 94 96 } 95 97 case 'link': { 96 98 return ( 97 - <ContentHider modui={rest.moderation?.ui('contentMedia')}> 99 + <ContentHider 100 + modui={rest.moderation?.ui('contentMedia')} 101 + activeStyle={[a.mt_sm]}> 98 102 <ExternalEmbed 99 103 link={embed.view.external} 100 104 onOpen={rest.onOpen} ··· 105 109 } 106 110 case 'video': { 107 111 return ( 108 - <ContentHider modui={rest.moderation?.ui('contentMedia')}> 112 + <ContentHider 113 + modui={rest.moderation?.ui('contentMedia')} 114 + activeStyle={[a.mt_sm]}> 109 115 <VideoEmbed embed={embed.view} /> 110 116 </ContentHider> 111 117 )