From ea4d8df8ec4b2e1106d45fb0dcc32197b14b2de4 Mon Sep 17 00:00:00 2001 From: Gregor MacLennan Date: Mon, 25 Nov 2019 15:40:05 -0500 Subject: [PATCH] fix(SyncModal): Adjust "waiting for sync" to fill entire screen (for devices with large text settings) --- src/frontend/screens/SyncModal/SyncView.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/frontend/screens/SyncModal/SyncView.js b/src/frontend/screens/SyncModal/SyncView.js index b1171d87f..e50c3d630 100644 --- a/src/frontend/screens/SyncModal/SyncView.js +++ b/src/frontend/screens/SyncModal/SyncView.js @@ -195,7 +195,7 @@ const styles = StyleSheet.create({ alignItems: "center" }, searchingBoxInner: { - flex: 1, + marginTop: 20, flexDirection: "row", alignItems: "center" }, @@ -249,9 +249,10 @@ const styles = StyleSheet.create({ searchingBox: { backgroundColor: "#2348B2", minHeight: 250, + flex: 1, paddingHorizontal: 30, flexDirection: "column", - justifyContent: "center", + justifyContent: "flex-start", alignItems: "stretch" } });