Bluesky app fork with some witchin' additions 💫
0
fork

Configure Feed

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

tweak top padding external (#4755)

authored by

Hailey and committed by
GitHub
ca0a3270 a3c43a74

+8 -4
+8 -4
src/view/com/util/post-embeds/index.tsx
··· 131 131 const {alt, thumb, aspectRatio} = images[0] 132 132 return ( 133 133 <ContentHider modui={moderation?.ui('contentMedia')}> 134 - <View style={[styles.imagesContainer, style]}> 134 + <View style={[styles.container, style]}> 135 135 <AutoSizedImage 136 136 alt={alt} 137 137 uri={thumb} ··· 156 156 157 157 return ( 158 158 <ContentHider modui={moderation?.ui('contentMedia')}> 159 - <View style={[styles.imagesContainer, style]}> 159 + <View style={[styles.container, style]}> 160 160 <ImageLayoutGrid 161 161 images={embed.images} 162 162 onPress={_openLightbox} ··· 174 174 const link = embed.external 175 175 return ( 176 176 <ContentHider modui={moderation?.ui('contentMedia')}> 177 - <ExternalLinkEmbed link={link} onOpen={onOpen} style={style} /> 177 + <ExternalLinkEmbed 178 + link={link} 179 + onOpen={onOpen} 180 + style={[styles.container, style]} 181 + /> 178 182 </ContentHider> 179 183 ) 180 184 } ··· 183 187 } 184 188 185 189 const styles = StyleSheet.create({ 186 - imagesContainer: { 190 + container: { 187 191 marginTop: 8, 188 192 }, 189 193 altContainer: {