diff --git a/src/status_im/ui/components/action_button/styles.cljs b/src/status_im/ui/components/action_button/styles.cljs index 74fa0f7879..a4699b46d3 100644 --- a/src/status_im/ui/components/action_button/styles.cljs +++ b/src/status_im/ui/components/action_button/styles.cljs @@ -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}) diff --git a/src/status_im/ui/screens/add_new/open_dapp/views.cljs b/src/status_im/ui/screens/add_new/open_dapp/views.cljs index eae21808e2..fca05599e1 100644 --- a/src/status_im/ui/screens/add_new/open_dapp/views.cljs +++ b/src/status_im/ui/screens/add_new/open_dapp/views.cljs @@ -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])