diff options
author | Michael <michael.foiani@gmail.com> | 2021-07-13 16:03:20 -0400 |
---|---|---|
committer | Michael <michael.foiani@gmail.com> | 2021-07-13 16:03:20 -0400 |
commit | 3c846d45ada4929fae6493c4704c70544c7941a3 (patch) | |
tree | 3bcd9328ce86d1bb22f71736ac1a7df3af8f6905 /src/components/moments/CaptionScreenHeader.tsx | |
parent | c51abe84b279402c3b3ad541e2af80754d0c67e7 (diff) | |
parent | 68f05afdf2d4ca29df60761c3d8f8ee445c1804d (diff) |
Merged with new master.
Diffstat (limited to 'src/components/moments/CaptionScreenHeader.tsx')
-rw-r--r-- | src/components/moments/CaptionScreenHeader.tsx | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/components/moments/CaptionScreenHeader.tsx b/src/components/moments/CaptionScreenHeader.tsx index 0638c128..cda85e57 100644 --- a/src/components/moments/CaptionScreenHeader.tsx +++ b/src/components/moments/CaptionScreenHeader.tsx @@ -1,5 +1,6 @@ import React from 'react'; import {Text, View, StyleSheet, ViewProps} from 'react-native'; +import {normalize} from '../../utils'; interface CaptionScreenHeaderProps extends ViewProps { title: string; } @@ -26,8 +27,8 @@ const styles = StyleSheet.create({ width: '90%', }, header: { - fontSize: 20, - fontWeight: 'bold', + fontSize: normalize(18), + fontWeight: '700', color: 'white', textAlign: 'center', }, |