aboutsummaryrefslogtreecommitdiff
path: root/src/components/profile/FriendsCount.tsx
diff options
context:
space:
mode:
authorIvan Chen <ivan@thetaggid.com>2021-01-22 19:13:53 -0500
committerGitHub <noreply@github.com>2021-01-22 19:13:53 -0500
commit2262d4937d0248e4742f149c7aa4ec79f76c8478 (patch)
tree308517c416605f13163bf6847e5c322ee23ab2e8 /src/components/profile/FriendsCount.tsx
parent9921e80e60cb24d0fc7b99123a8b146c6e7d14ff (diff)
parente5915b02008dfcebe08de063f0440974c8415d4b (diff)
Merge pull request #196 from IvanIFChen/tma552-adjust-styles-and-sizes
[TMA-552] Adjust Styles and Sizes
Diffstat (limited to 'src/components/profile/FriendsCount.tsx')
-rw-r--r--src/components/profile/FriendsCount.tsx5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/components/profile/FriendsCount.tsx b/src/components/profile/FriendsCount.tsx
index 23a24787..9647710e 100644
--- a/src/components/profile/FriendsCount.tsx
+++ b/src/components/profile/FriendsCount.tsx
@@ -5,6 +5,7 @@ import {useNavigation} from '@react-navigation/native';
import {RootState} from '../../store/rootReducer';
import {useSelector} from 'react-redux';
import {ScreenType} from '../../types';
+import {normalize} from '../../utils';
interface FriendsCountProps extends ViewProps {
userXId: string | undefined;
@@ -55,11 +56,11 @@ const styles = StyleSheet.create({
},
count: {
fontWeight: '700',
- fontSize: 13,
+ fontSize: normalize(14),
},
label: {
fontWeight: '500',
- fontSize: 13,
+ fontSize: normalize(14),
},
});