diff options
author | dan <dan.abramov@gmail.com> | 2024-06-19 19:03:59 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-06-19 19:03:59 +0300 |
commit | ca17cf276ff93f8d4014b639c99938d89d9e951f (patch) | |
tree | 06020929619f0543633a875827957adab747a3e0 | |
parent | 8788708bd229ee8a7049285b2e520cc657b41c00 (diff) | |
download | voidsky-ca17cf276ff93f8d4014b639c99938d89d9e951f.tar.zst |
Fix avi placeholder layout (#4570)
-rw-r--r-- | src/screens/Profile/Header/index.tsx | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/src/screens/Profile/Header/index.tsx b/src/screens/Profile/Header/index.tsx index 1280dd8b1..c7ef34b70 100644 --- a/src/screens/Profile/Header/index.tsx +++ b/src/screens/Profile/Header/index.tsx @@ -6,11 +6,11 @@ import { ModerationOpts, RichText as RichTextAPI, } from '@atproto/api' -import {LoadingPlaceholder} from 'view/com/util/LoadingPlaceholder' -import {usePalette} from 'lib/hooks/usePalette' -import {ProfileHeaderStandard} from './ProfileHeaderStandard' +import {usePalette} from 'lib/hooks/usePalette' +import {LoadingPlaceholder} from 'view/com/util/LoadingPlaceholder' import {ProfileHeaderLabeler} from './ProfileHeaderLabeler' +import {ProfileHeaderStandard} from './ProfileHeaderStandard' let ProfileHeaderLoading = (_props: {}): React.ReactNode => { const pal = usePalette('default') @@ -19,11 +19,11 @@ let ProfileHeaderLoading = (_props: {}): React.ReactNode => { <LoadingPlaceholder width="100%" height={150} style={{borderRadius: 0}} /> <View style={[pal.view, {borderColor: pal.colors.background}, styles.avi]}> - <LoadingPlaceholder width={80} height={80} style={styles.br40} /> + <LoadingPlaceholder width={90} height={90} style={styles.br45} /> </View> <View style={styles.content}> <View style={[styles.buttonsLine]}> - <LoadingPlaceholder width={167} height={31} style={styles.br50} /> + <LoadingPlaceholder width={167} height={36} style={styles.br50} /> </View> </View> </View> @@ -58,13 +58,13 @@ const styles = StyleSheet.create({ position: 'absolute', top: 110, left: 10, - width: 84, - height: 84, - borderRadius: 42, + width: 94, + height: 94, + borderRadius: 47, borderWidth: 2, }, content: { - paddingTop: 8, + paddingTop: 12, paddingHorizontal: 14, paddingBottom: 4, }, @@ -73,6 +73,6 @@ const styles = StyleSheet.create({ marginLeft: 'auto', marginBottom: 12, }, - br40: {borderRadius: 40}, + br45: {borderRadius: 45}, br50: {borderRadius: 50}, }) |