diff options
author | Brian Kim <brian@tagg.id> | 2021-07-13 18:00:38 -0400 |
---|---|---|
committer | Brian Kim <brian@tagg.id> | 2021-07-13 18:00:38 -0400 |
commit | d915d6e9fdd86aa35678d53b0b39b0038e3a8ac1 (patch) | |
tree | 4965095205ad5fb4fa3e1d6e82d3c784350b0353 /src/components/moments/CaptionScreenHeader.tsx | |
parent | b7cba594635f4a6de3582ba4845bfc9757632ba1 (diff) | |
parent | 68f05afdf2d4ca29df60761c3d8f8ee445c1804d (diff) |
Merge with 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', }, |