diff options
| author | Ivan Chen <ivan@thetaggid.com> | 2021-02-05 16:50:13 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-02-05 16:50:13 -0500 |
| commit | 55914efe03da970f03970a2a9fa85196fce41b75 (patch) | |
| tree | d475e92b463926fc4430b02fb80350aa50aefa1f /src/components/moments | |
| parent | f591dd437a1273d99709aa6a3637a3a2922e6f4d (diff) | |
| parent | 212eae20eb33d224525c52cea600b86fb2fd1126 (diff) | |
Merge pull request #212 from shravyaramesh/tma590-friendslist-buttons
[TMA-590] New Friends Screen
Diffstat (limited to 'src/components/moments')
| -rw-r--r-- | src/components/moments/IndividualMomentTitleBar.tsx | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/components/moments/IndividualMomentTitleBar.tsx b/src/components/moments/IndividualMomentTitleBar.tsx index bd5b307f..6cdfe0e8 100644 --- a/src/components/moments/IndividualMomentTitleBar.tsx +++ b/src/components/moments/IndividualMomentTitleBar.tsx @@ -1,6 +1,7 @@ import React from 'react'; import {TouchableOpacity} from 'react-native'; import {Text, View, StyleSheet, ViewProps} from 'react-native'; +import {normalize} from '../../utils'; import CloseIcon from '../../assets/ionicons/close-outline.svg'; interface IndividualMomentTitleBarProps extends ViewProps { @@ -30,9 +31,11 @@ const styles = StyleSheet.create({ height: '5%', }, header: { - fontSize: 20, - fontWeight: 'bold', color: 'white', + fontSize: normalize(18), + fontWeight: '700', + lineHeight: normalize(21.48), + letterSpacing: normalize(1.3), }, closeButton: { position: 'absolute', |
