diff --git a/resources/images/icons2/20x20/dapps@2x.png b/resources/images/icons2/20x20/dapps@2x.png new file mode 100644 index 0000000000..35abe8064e Binary files /dev/null and b/resources/images/icons2/20x20/dapps@2x.png differ diff --git a/resources/images/icons2/20x20/dapps@3x.png b/resources/images/icons2/20x20/dapps@3x.png new file mode 100644 index 0000000000..b905d606f0 Binary files /dev/null and b/resources/images/icons2/20x20/dapps@3x.png differ diff --git a/src/status_im/contexts/profile/settings/list_items.cljs b/src/status_im/contexts/profile/settings/list_items.cljs index cf02e8a17d..9e09330c3d 100644 --- a/src/status_im/contexts/profile/settings/list_items.cljs +++ b/src/status_im/contexts/profile/settings/list_items.cljs @@ -34,7 +34,7 @@ (when config/show-not-implemented-features? {:title (i18n/label :t/dapps) :on-press not-implemented/alert - :image-props :i/placeholder + :image-props :i/dapps :image :icon :blur? true :action :arrow}) diff --git a/src/status_im/contexts/profile/settings/view.cljs b/src/status_im/contexts/profile/settings/view.cljs index 71c579d4c1..599eaaca3b 100644 --- a/src/status_im/contexts/profile/settings/view.cljs +++ b/src/status_im/contexts/profile/settings/view.cljs @@ -19,7 +19,7 @@ [rf/delay-render [quo/category {:list-type :settings - :container-style {:padding-bottom 0} + :container-style {:padding-bottom 12} :blur? true :data data}]]) diff --git a/src/status_im/contexts/shell/jump_to/view.cljs b/src/status_im/contexts/shell/jump_to/view.cljs index ddfa36f27f..717f0a591a 100644 --- a/src/status_im/contexts/shell/jump_to/view.cljs +++ b/src/status_im/contexts/shell/jump_to/view.cljs @@ -22,13 +22,15 @@ (defn floating-button [shared-values] - [quo/floating-shell-button - {:jump-to {:on-press #(animation/close-home-stack true) - :label (i18n/label :t/jump-to) - :customization-color (rf/sub [:profile/customization-color])}} - {:position :absolute - :bottom (utils/bottom-tabs-container-height)} - (:home-stack-opacity shared-values)]) + (let [current-screen-id (rf/sub [:view-id])] + (when-not (= current-screen-id :settings) + [quo/floating-shell-button + {:jump-to {:on-press #(animation/close-home-stack true) + :label (i18n/label :t/jump-to) + :customization-color (rf/sub [:profile/customization-color])}} + {:position :absolute + :bottom (utils/bottom-tabs-container-height)} + (:home-stack-opacity shared-values)]))) (defn f-shell-stack []