diff --git a/src/status_im2/contexts/chat/home/view.cljs b/src/status_im2/contexts/chat/home/view.cljs index 9d83ccbf1b..6fca59e2d6 100644 --- a/src/status_im2/contexts/chat/home/view.cljs +++ b/src/status_im2/contexts/chat/home/view.cljs @@ -129,10 +129,15 @@ [contacts pending-contact-requests top] [chats selected-tab top]) [rn/view {:style (style/blur-container top)} - [blur/view - {:blur-amount (if platform/ios? 20 10) - :blur-type (if (colors/dark?) :dark (if platform/ios? :light :xlight)) - :style style/blur}] + (let [{:keys [sheets]} (rf/sub [:bottom-sheet])] + [blur/view + {:blur-amount (if platform/ios? 20 10) + :blur-type (if (colors/dark?) :dark (if platform/ios? :light :xlight)) + :style style/blur + :overlay-color (if (seq sheets) + (theme/theme-value colors/white colors/neutral-95-opa-70) + (when (colors/dark?) + colors/neutral-95-opa-70))}]) [common.home/top-nav {:type :grey :avatar {:customization-color customization-color diff --git a/src/status_im2/contexts/communities/home/view.cljs b/src/status_im2/contexts/communities/home/view.cljs index 0aed3aa2b1..e8622be12e 100644 --- a/src/status_im2/contexts/communities/home/view.cljs +++ b/src/status_im2/contexts/communities/home/view.cljs @@ -94,10 +94,15 @@ :data selected-items}]) [rn/view {:style (style/blur-container top)} - [blur/view - {:blur-amount (if platform/ios? 20 10) - :blur-type (if (colors/dark?) :dark (if platform/ios? :light :xlight)) - :style style/blur}] + (let [{:keys [sheets]} (rf/sub [:bottom-sheet])] + [blur/view + {:blur-amount (if platform/ios? 20 10) + :blur-type (if (colors/dark?) :dark (if platform/ios? :light :xlight)) + :style style/blur + :overlay-color (if (seq sheets) + (theme/theme-value colors/white colors/neutral-95-opa-70) + (when (colors/dark?) + colors/neutral-95-opa-70))}]) [common.home/top-nav {:type :grey :avatar {:customization-color customization-color