diff --git a/src/js/routes.js b/src/js/routes.js index d04fcfef1..ed29cd0a0 100644 --- a/src/js/routes.js +++ b/src/js/routes.js @@ -986,7 +986,7 @@ angular.module('copayApp').config(function(historicLogProvider, $provide, $logPr profileService.storeProfileIfDirty(); $log.debug('Profile loaded ... Starting UX.'); scannerService.gentleInitialize(); - //$state.go('tabs.home'); + $state.go('tabs.home'); } }); }); diff --git a/src/sass/views/confirm.scss b/src/sass/views/confirm.scss index fef6505f4..c7e5e80f2 100644 --- a/src/sass/views/confirm.scss +++ b/src/sass/views/confirm.scss @@ -9,6 +9,7 @@ padding-left: 65px; padding-bottom: 0; margin-bottom: 1px; + overflow: visible; > i { padding: 0; diff --git a/src/sass/views/includes/actionSheet.scss b/src/sass/views/includes/actionSheet.scss index c07612749..b686e7c17 100644 --- a/src/sass/views/includes/actionSheet.scss +++ b/src/sass/views/includes/actionSheet.scss @@ -7,8 +7,8 @@ action-sheet { width: 100%; position: fixed; bottom: 0; - left: 0; - transform: translateY(100%); + left: 50%; + transform: translateY(100%) translateX(-50%); transition: transform 250ms cubic-bezier(0.4, 0.0, 0.2, 1); z-index: 100; padding-top: 1.75rem; @@ -16,9 +16,10 @@ action-sheet { padding-right: .75rem; color: #2f2f2f; padding-bottom: 3.5rem; + max-width: 550px; &.slide-up { - transform: translateY(0); + transform: translateY(0) translateX(-50%); box-shadow: 0px 2px 13px 3px rgba(0, 0, 0, .3); }