From 63fbdede42fe28846e552dd64ff7f0fce829a3f8 Mon Sep 17 00:00:00 2001 From: dan Date: Thu, 25 Jan 2024 01:38:23 +0000 Subject: Clean up the post controls UI (#2614) * Hide zeros on post ctrls * Align buttons between posts * Update loading placeholders * Remove unused --- src/view/com/util/post-ctrls/RepostButton.web.tsx | 13 ++++--------- 1 file changed, 4 insertions(+), 9 deletions(-) (limited to 'src/view/com/util/post-ctrls/RepostButton.web.tsx') diff --git a/src/view/com/util/post-ctrls/RepostButton.web.tsx b/src/view/com/util/post-ctrls/RepostButton.web.tsx index 329382132..a888178a3 100644 --- a/src/view/com/util/post-ctrls/RepostButton.web.tsx +++ b/src/view/com/util/post-ctrls/RepostButton.web.tsx @@ -69,19 +69,18 @@ export const RepostButton = ({ const inner = ( , ]}> - {typeof repostCount !== 'undefined' ? ( + {typeof repostCount !== 'undefined' && repostCount > 0 ? ( - {repostCount ?? 0} + {repostCount} ) : undefined} @@ -110,15 +109,11 @@ export const RepostButton = ({ } const styles = StyleSheet.create({ - control: { - display: 'flex', + container: { flexDirection: 'row', alignItems: 'center', gap: 4, }, - controlPad: { - padding: 5, - }, reposted: { color: colors.green3, }, -- cgit 1.4.1