diff --git a/src/js/controllers/tab-send.js b/src/js/controllers/tab-send.js index bcaaaef5c..e0806816b 100644 --- a/src/js/controllers/tab-send.js +++ b/src/js/controllers/tab-send.js @@ -250,6 +250,7 @@ angular.module('copayApp.controllers').controller('tabSendController', function( }; $scope.$on("$ionicView.beforeEnter", function(event, data) { + $scope.isIOS = platformInfo.isIOS && platformInfo.isCordova; $scope.showWalletsBch = $scope.showWalletsBtc = $scope.showWallets = false; $scope.checkingBalance = true; diff --git a/src/sass/views/tab-send.scss b/src/sass/views/tab-send.scss index 717ebff89..89c2fc2c4 100644 --- a/src/sass/views/tab-send.scss +++ b/src/sass/views/tab-send.scss @@ -6,7 +6,10 @@ width: 100%; } &-contacts { - height: calc(100vh - 300px - 50px - 44px); + height: calc(100vh - 300px /* button container */ - 50px /* bottom-tab-menu */ - 44px /* header top */); + &.ios { + height: calc(100vh - 300px - 50px - 44px - 20pt); // Remove the notification-bar height on iOS + } overflow: scroll; } diff --git a/www/views/tab-send.html b/www/views/tab-send.html index 3fabea47a..4d9506592 100644 --- a/www/views/tab-send.html +++ b/www/views/tab-send.html @@ -86,10 +86,9 @@ -
+
-
Contacts
Saved frequently used addresses