diff options
author | Samuel Newman <mozzius@protonmail.com> | 2025-08-13 17:20:23 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-08-13 17:20:23 +0300 |
commit | edd205483d24b4806e4ef436f5bcfe48e32d0f4a (patch) | |
tree | f7171fa91228c7b7085fad515d8df8962e4ea796 /src/components/dms/MessageProfileButton.tsx | |
parent | 485f7ee95b526e712f110d23f0cfb6b6f5afdf4d (diff) | |
download | voidsky-edd205483d24b4806e4ef436f5bcfe48e32d0f4a.tar.zst |
Fix chat button placeholder size on profile (#8827)
Diffstat (limited to 'src/components/dms/MessageProfileButton.tsx')
-rw-r--r-- | src/components/dms/MessageProfileButton.tsx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/components/dms/MessageProfileButton.tsx b/src/components/dms/MessageProfileButton.tsx index 07b3a0c04..fbbb5c9bf 100644 --- a/src/components/dms/MessageProfileButton.tsx +++ b/src/components/dms/MessageProfileButton.tsx @@ -73,7 +73,8 @@ export function MessageProfileButton({ a.align_center, t.atoms.bg_contrast_25, a.rounded_full, - {width: 34, height: 34}, + // Matches size of button below to avoid layout shift + {width: 33, height: 33}, ]}> <Message style={[t.atoms.text, {opacity: 0.3}]} size="md" /> </View> |