diff options
author | Paul Frazee <pfrazee@gmail.com> | 2023-10-04 13:28:07 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-04 13:28:07 -0700 |
commit | eb7306b16512e317f477c7a28e1e3b0ce5c65ff8 (patch) | |
tree | 43df377ff593516fbec9bfaf9752a65f32681097 /src/view/com/util | |
parent | 9278822088d212c9bee6a40a6a8b773bc482242d (diff) | |
download | voidsky-eb7306b16512e317f477c7a28e1e3b0ce5c65ff8.tar.zst |
Profile UI tweaks (#1607)
* Use inverted color instead of primary color for press state * Fix: add missing border to empty state
Diffstat (limited to 'src/view/com/util')
-rw-r--r-- | src/view/com/util/EmptyState.tsx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/view/com/util/EmptyState.tsx b/src/view/com/util/EmptyState.tsx index a495fcd3f..7486b212f 100644 --- a/src/view/com/util/EmptyState.tsx +++ b/src/view/com/util/EmptyState.tsx @@ -22,7 +22,7 @@ export function EmptyState({ }) { const pal = usePalette('default') return ( - <View testID={testID} style={[styles.container, style]}> + <View testID={testID} style={[styles.container, pal.border, style]}> <View style={styles.iconContainer}> {icon === 'user-group' ? ( <UserGroupIcon size="64" style={styles.icon} /> @@ -50,6 +50,7 @@ const styles = StyleSheet.create({ container: { paddingVertical: 20, paddingHorizontal: 36, + borderTopWidth: 1, }, iconContainer: { flexDirection: 'row', |