[FIX #3650] Blue open dapp button

Signed-off-by: Julien Eluard <julien.eluard@gmail.com>
This commit is contained in:
Daniel Regeci 2018-03-29 09:52:15 +07:00 committed by Julien Eluard
parent 7268342ea2
commit fd7b393ae0
No known key found for this signature in database
GPG Key ID: 6FD7DB5437FCBEF6
2 changed files with 4 additions and 2 deletions

View File

@ -16,7 +16,7 @@
:height 40
:align-items :center
:justify-content :center
:ios {:background-color (or circle-color styles/color-light-blue-transparent)}})
:background-color (or circle-color styles/color-light-blue-transparent)})
(def action-button-label-container
{:padding-left 16})
@ -41,5 +41,5 @@
:height 40
:align-items :center
:justify-content :center
:ios {:background-color styles/color-light-gray}})
:background-color styles/color-light-gray})

View File

@ -4,6 +4,7 @@
[status-im.i18n :as i18n]
[status-im.ui.components.react :as react]
[status-im.ui.components.action-button.action-button :as action-button]
[status-im.ui.components.colors :as colors]
[status-im.ui.components.common.common :as components]
[status-im.ui.components.status-bar.view :as status-bar]
[status-im.ui.components.toolbar.view :as toolbar.view]
@ -60,6 +61,7 @@
[react/view {:margin-top 24}
[action-button/action-button {:label (i18n/label :t/open)
:icon :icons/address
:icon-opts {:color colors/blue}
:accessibility-label :open-dapp-button
:on-press #(do
(re-frame/dispatch [:navigate-to-clean :home])