diff options
author | Ivan Chen <ivan@tagg.id> | 2021-05-12 17:01:59 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-12 17:01:59 -0400 |
commit | 2c51e35b1a6160bfedea6a3d38d0c4de2736ebdc (patch) | |
tree | 265b60314487d964e13bccd26b3ba22f225aebbb | |
parent | 64971e5d67878ee5bd430dfa89dfe12ac532f5e6 (diff) | |
parent | d2f52e2fe19023d16fe72d750c5a1fc0f1bd4992 (diff) |
Merge pull request #418 from shravyaramesh/tma845-fix-font-sizes
[TMA-845] fixed font size
-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; |