An ATproto social media client -- with an independent Appview.
6
fork

Configure Feed

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

Profile UI tweaks (#1607)

* Use inverted color instead of primary color for press state

* Fix: add missing border to empty state

authored by

Paul Frazee and committed by
GitHub
eb7306b1 92788220

+4 -3
+2 -2
src/view/com/profile/ProfileHeader.tsx
··· 392 392 { 393 393 paddingHorizontal: 10, 394 394 backgroundColor: showSuggestedFollows 395 - ? colors.blue3 396 - : pal.viewLight.backgroundColor, 395 + ? pal.colors.text 396 + : pal.colors.backgroundLight, 397 397 }, 398 398 ]} 399 399 accessibilityRole="button"
+2 -1
src/view/com/util/EmptyState.tsx
··· 22 22 }) { 23 23 const pal = usePalette('default') 24 24 return ( 25 - <View testID={testID} style={[styles.container, style]}> 25 + <View testID={testID} style={[styles.container, pal.border, style]}> 26 26 <View style={styles.iconContainer}> 27 27 {icon === 'user-group' ? ( 28 28 <UserGroupIcon size="64" style={styles.icon} /> ··· 50 50 container: { 51 51 paddingVertical: 20, 52 52 paddingHorizontal: 36, 53 + borderTopWidth: 1, 53 54 }, 54 55 iconContainer: { 55 56 flexDirection: 'row',