diff options
Diffstat (limited to 'src/components/profile/ProfilePreview.tsx')
-rw-r--r-- | src/components/profile/ProfilePreview.tsx | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/src/components/profile/ProfilePreview.tsx b/src/components/profile/ProfilePreview.tsx index cbee368b..455c4f56 100644 --- a/src/components/profile/ProfilePreview.tsx +++ b/src/components/profile/ProfilePreview.tsx @@ -318,12 +318,13 @@ const styles = StyleSheet.create({ width: SCREEN_WIDTH * 0.6, }, friendAvatar: { - height: normalize(44), - width: normalize(44), + height: '100%', + aspectRatio: 1, marginRight: 15, - borderRadius: 20, + borderRadius: 50, }, friendNameContainer: { + height: '100%', justifyContent: 'space-evenly', alignSelf: 'stretch', }, @@ -331,13 +332,13 @@ const styles = StyleSheet.create({ fontSize: normalize(14), fontWeight: '500', color: '#000', - letterSpacing: 0.3, + letterSpacing: normalize(0.1), }, friendName: { fontSize: normalize(12), fontWeight: '400', color: '#6C6C6C', - letterSpacing: 0.1, + letterSpacing: normalize(0.1), }, }); |