diff options
author | Shravya Ramesh <shravs1208@gmail.com> | 2021-02-03 18:22:24 -0800 |
---|---|---|
committer | Shravya Ramesh <shravs1208@gmail.com> | 2021-02-03 18:22:24 -0800 |
commit | 48acc579d495256956989af46f5b3338a20afbe8 (patch) | |
tree | e0c11d7ad6072a1137def0ab868792dcfd32271b /src/components/profile/ProfilePreview.tsx | |
parent | bd180eb4772cd588356b851c2495d378727b3d5c (diff) |
friends style
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, }, }); |