diff options
author | Eric Bailey <git@esb.lol> | 2025-04-24 11:46:23 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-04-24 11:46:23 -0500 |
commit | 6f44abee35437e4cd51b3f60819f1b6017e6df34 (patch) | |
tree | fa58dd1ecd6c2bdcc75aa030a69346e2460e6089 /src/view/com/util/PostMeta.tsx | |
parent | e1e936068a2f8e785135ad14143bae2335b7b387 (diff) | |
download | voidsky-6f44abee35437e4cd51b3f60819f1b6017e6df34.tar.zst |
Verification UI tweaks (#8276)
* Prevent issuing verifications for users without display names * Wait for success before closing, show errors * Update icons * WIP adjust size * Adjust check size in feeds * Add back unused icon * Format
Diffstat (limited to 'src/view/com/util/PostMeta.tsx')
-rw-r--r-- | src/view/com/util/PostMeta.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/view/com/util/PostMeta.tsx b/src/view/com/util/PostMeta.tsx index d5af32236..fd8e3a38b 100644 --- a/src/view/com/util/PostMeta.tsx +++ b/src/view/com/util/PostMeta.tsx @@ -107,11 +107,11 @@ let PostMeta = (opts: PostMetaOpts): React.ReactNode => { a.pl_2xs, a.self_center, { - marginTop: platform({web: -1, ios: -1, android: -2}), + marginTop: platform({web: 0, ios: 0, android: -1}), }, ]}> <VerificationCheck - width={14} + width={platform({android: 13, default: 12})} verifier={verification.role === 'verifier'} /> </View> |