diff options
author | Shravya Ramesh <shravs1208@gmail.com> | 2021-05-04 07:45:08 -0700 |
---|---|---|
committer | Shravya Ramesh <shravs1208@gmail.com> | 2021-05-04 07:45:08 -0700 |
commit | 355829d9983b839db342881011cc3fe9ff3792f4 (patch) | |
tree | a8cd601396e3bffbcd61e9d7a2818e0128b85334 /src/components/common | |
parent | 2abe11e6b231410c7bd531adabfe9158109411cb (diff) |
style to look more like figma
Diffstat (limited to 'src/components/common')
-rw-r--r-- | src/components/common/EmptyContentView.tsx | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/src/components/common/EmptyContentView.tsx b/src/components/common/EmptyContentView.tsx index e3aaf621..14ad4af1 100644 --- a/src/components/common/EmptyContentView.tsx +++ b/src/components/common/EmptyContentView.tsx @@ -100,7 +100,10 @@ const styles = StyleSheet.create({ justifyContent: 'center', alignItems: 'center', }, - topMargin: {marginTop: SCREEN_HEIGHT * 0.025}, + topMargin: { + marginTop: SCREEN_HEIGHT * 0.025, + paddingBottom: '5%', + }, upperTextStyle: { textAlign: 'center', fontWeight: '700', @@ -112,10 +115,10 @@ const styles = StyleSheet.create({ }, bottomTextStyle: { textAlign: 'center', - color: '#2D3B45', + color: '#808080', fontWeight: '600', fontSize: normalize(20), - lineHeight: normalize(40), + lineHeight: normalize(30), }, imageStyles: { width: SCREEN_WIDTH * 0.72, |