[FIX #3650] Blue open dapp button
Signed-off-by: Julien Eluard <julien.eluard@gmail.com>
This commit is contained in:
parent
7268342ea2
commit
fd7b393ae0
|
@ -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})
|
||||
|
||||
|
|
|
@ -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])
|
||||
|
|
Loading…
Reference in New Issue