diff options
Diffstat (limited to 'src/components/profile/ProfilePreview.tsx')
-rw-r--r-- | src/components/profile/ProfilePreview.tsx | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/components/profile/ProfilePreview.tsx b/src/components/profile/ProfilePreview.tsx index 159798de..cbee368b 100644 --- a/src/components/profile/ProfilePreview.tsx +++ b/src/components/profile/ProfilePreview.tsx @@ -314,12 +314,12 @@ const styles = StyleSheet.create({ friendContainer: { flexDirection: 'row', alignItems: 'center', - marginVertical: 10, + justifyContent: 'flex-start', width: SCREEN_WIDTH * 0.6, }, friendAvatar: { - height: 42, - width: 42, + height: normalize(44), + width: normalize(44), marginRight: 15, borderRadius: 20, }, @@ -330,14 +330,14 @@ const styles = StyleSheet.create({ friendUsername: { fontSize: normalize(14), fontWeight: '500', - color: '#3C3C3C', - letterSpacing: 0.6, + color: '#000', + letterSpacing: 0.3, }, friendName: { fontSize: normalize(12), fontWeight: '400', color: '#6C6C6C', - letterSpacing: 0.5, + letterSpacing: 0.1, }, }); |