Bluesky app fork with some witchin' additions 💫
0
fork

Configure Feed

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

More layout fixes in notifications

+3 -3
+3 -3
src/view/com/notifications/FeedItem.tsx
··· 24 24 import {usePalette} from '../../lib/hooks/usePalette' 25 25 import {useAnimatedValue} from '../../lib/hooks/useAnimatedValue' 26 26 27 - const MAX_AUTHORS = 8 27 + const MAX_AUTHORS = 5 28 28 29 29 const EXPANDED_AUTHOR_EL_HEIGHT = 35 30 30 ··· 273 273 <FontAwesomeIcon 274 274 icon="angle-down" 275 275 size={18} 276 - style={[styles.expandedAuthorsCloseBtnIcon, pal.icon]} 276 + style={[styles.expandedAuthorsCloseBtnIcon, pal.textLight]} 277 277 /> 278 278 </View> 279 279 ) ··· 302 302 }).start() 303 303 }, [heightInterp, visible]) 304 304 return ( 305 - <Animated.View style={[s.mb10, heightStyle]}> 305 + <Animated.View style={[heightStyle, visible ? s.mb10 : undefined]}> 306 306 {authors.map(author => ( 307 307 <Link 308 308 key={author.href}