diff options
-rw-r--r-- | src/screens/profile/FriendsListScreen.tsx | 31 |
1 files changed, 7 insertions, 24 deletions
diff --git a/src/screens/profile/FriendsListScreen.tsx b/src/screens/profile/FriendsListScreen.tsx index 7ef5d752..eb498641 100644 --- a/src/screens/profile/FriendsListScreen.tsx +++ b/src/screens/profile/FriendsListScreen.tsx @@ -57,31 +57,14 @@ const styles = StyleSheet.create({ backgroundColor: 'white', height: '100%', }, - contentContainer: { - paddingBottom: SCREEN_HEIGHT / 15, - paddingHorizontal: 15, - marginTop: '5%', - }, - modalView: { - width: '85%', - height: '70%', - backgroundColor: '#fff', - shadowColor: '#000', - shadowOpacity: 30, - shadowOffset: {width: 0, height: 2}, - shadowRadius: 5, - borderRadius: 8, - paddingBottom: 15, - paddingHorizontal: 20, - justifyContent: 'space-between', - }, - modalScrollViewContent: { + header: { + flexDirection: 'column', justifyContent: 'center', + height: SCREEN_HEIGHT * 0.05, + padding: '3%', + paddingBottom: 0, + marginTop: '1%', }, - modalScrollView: { - marginBottom: 10, - }, - header: {justifyContent: 'center', padding: '3%'}, headerText: { position: 'absolute', alignSelf: 'center', @@ -94,11 +77,11 @@ const styles = StyleSheet.create({ padding: 0, marginLeft: '5%', alignSelf: 'flex-start', + marginBottom: '1%', }, body: { width: SCREEN_WIDTH, height: SCREEN_HEIGHT * 0.8, - paddingTop: '3%', }, }); |