Bluesky app fork with some witchin' additions 💫
0
fork

Configure Feed

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

align the trash icon in the center in feed edit list (#4004)

* align the trash icon in the center

* align_center instead of align_start

authored by

Hailey and committed by
GitHub
fce65b74 0776cd99

+2 -2
+2 -2
src/view/com/feeds/FeedSourceCard.tsx
··· 206 206 } 207 207 }} 208 208 key={feed.uri}> 209 - <View style={[styles.headerContainer, a.align_start]}> 209 + <View style={[styles.headerContainer, a.align_center]}> 210 210 <View style={[s.mr10]}> 211 211 <UserAvatar type="algo" size={36} avatar={feed.avatar} /> 212 212 </View> ··· 224 224 </View> 225 225 226 226 {showSaveBtn && ( 227 - <View style={[s.justifyCenter]}> 227 + <View style={{alignSelf: 'center'}}> 228 228 <Pressable 229 229 testID={`feed-${feed.displayName}-toggleSave`} 230 230 disabled={isAddSavedFeedPending || isRemovePending}