diff options
author | Shravya Ramesh <shravs1208@gmail.com> | 2021-05-12 12:49:32 -0700 |
---|---|---|
committer | Shravya Ramesh <shravs1208@gmail.com> | 2021-05-12 12:49:32 -0700 |
commit | d2f52e2fe19023d16fe72d750c5a1fc0f1bd4992 (patch) | |
tree | 265b60314487d964e13bccd26b3ba22f225aebbb /src | |
parent | 64971e5d67878ee5bd430dfa89dfe12ac532f5e6 (diff) |
fixed moment caption size
Diffstat (limited to 'src')
-rw-r--r-- | src/components/moments/MomentPostContent.tsx | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/components/moments/MomentPostContent.tsx b/src/components/moments/MomentPostContent.tsx index 45186ba1..193bf40c 100644 --- a/src/components/moments/MomentPostContent.tsx +++ b/src/components/moments/MomentPostContent.tsx @@ -10,6 +10,7 @@ import { navigateToProfile, SCREEN_HEIGHT, SCREEN_WIDTH, + normalize, } from '../../utils'; import {mentionPartTypes, renderTextWithMentions} from '../../utils/comments'; import {CommentsCount} from '../comments'; @@ -103,6 +104,9 @@ const styles = StyleSheet.create({ marginRight: '5%', color: '#ffffff', fontWeight: '500', + fontSize: normalize(13), + lineHeight: normalize(15.51), + letterSpacing: normalize(0.6), }, }); export default MomentPostContent; |