diff options
author | Paul Frazee <pfrazee@gmail.com> | 2023-01-19 10:50:21 -0600 |
---|---|---|
committer | Paul Frazee <pfrazee@gmail.com> | 2023-01-19 10:50:21 -0600 |
commit | 1ed82b6c590010aa25bcf453d15fdcb1ae673b36 (patch) | |
tree | 697215adb3c9fbee5b7d3b3f32b95a2907593755 /src/view/com/util/EmptyState.tsx | |
parent | f47751ad42c3da68fac175438e455eb8c08a6565 (diff) | |
download | voidsky-1ed82b6c590010aa25bcf453d15fdcb1ae673b36.tar.zst |
Tune the empty state visuals
Diffstat (limited to 'src/view/com/util/EmptyState.tsx')
-rw-r--r-- | src/view/com/util/EmptyState.tsx | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/view/com/util/EmptyState.tsx b/src/view/com/util/EmptyState.tsx index 5cede14a9..6218027d2 100644 --- a/src/view/com/util/EmptyState.tsx +++ b/src/view/com/util/EmptyState.tsx @@ -25,11 +25,13 @@ export function EmptyState({ <FontAwesomeIcon icon={icon} size={64} - style={[styles.icon, pal.textLight]} + style={[styles.icon, {color: pal.colors.emptyStateIcon}]} /> )} </View> - <Text type="xl" style={[pal.textLight, styles.text]}> + <Text + type="xl-medium" + style={[{color: pal.colors.textVeryLight}, styles.text]}> {message} </Text> </View> @@ -50,6 +52,6 @@ const styles = StyleSheet.create({ }, text: { textAlign: 'center', - paddingTop: 16, + paddingTop: 20, }, }) |