aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorShravya Ramesh <shravs1208@gmail.com>2021-02-18 10:25:07 -0800
committerShravya Ramesh <shravs1208@gmail.com>2021-02-18 10:25:07 -0800
commit032bfc5d4d48eca542d2622df22ad353b594ef0b (patch)
tree8a959b5f34dc831a41c69ace3162a3407e86a9f4 /src
parent2f3c621ec93b712b92919fcab95a8cb4eefe9337 (diff)
iPhone 8 container height increased (cosmetic)
Diffstat (limited to 'src')
-rw-r--r--src/components/suggestedPeople/MutualFriends.tsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/components/suggestedPeople/MutualFriends.tsx b/src/components/suggestedPeople/MutualFriends.tsx
index d8b37bca..3f9df4cd 100644
--- a/src/components/suggestedPeople/MutualFriends.tsx
+++ b/src/components/suggestedPeople/MutualFriends.tsx
@@ -52,7 +52,7 @@ const MutualFriends: React.FC = () => {
</TouchableOpacity>
)}
<BottomDrawer
- initialSnapPosition={isIPhoneX() ? '40%' : '45%'}
+ initialSnapPosition={isIPhoneX() ? '40%' : '46%'}
showHeader={false}
isOpen={drawerVisible}
setIsOpen={setDrawerVisible}>
@@ -138,7 +138,7 @@ const styles = StyleSheet.create({
flexDirection: 'column',
backgroundColor: '#f9f9f9',
width: SCREEN_WIDTH,
- height: SCREEN_HEIGHT * 0.4,
+ height: isIPhoneX() ? SCREEN_HEIGHT * 0.4 : SCREEN_HEIGHT * 0.46,
borderTopRightRadius: normalize(13),
borderTopLeftRadius: normalize(13),
borderWidth: 0.5,