From e1e596cf5f2d683df24a112badea8980ad5724c4 Mon Sep 17 00:00:00 2001 From: Volodymyr Kozieiev Date: Wed, 24 May 2023 19:58:47 +0100 Subject: [PATCH] Bottom sheet background on Android changed to overcome issues with blur (#16009) --- src/status_im2/common/bottom_sheet/styles.cljs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/status_im2/common/bottom_sheet/styles.cljs b/src/status_im2/common/bottom_sheet/styles.cljs index fe25521239..d22e5d72ba 100644 --- a/src/status_im2/common/bottom_sheet/styles.cljs +++ b/src/status_im2/common/bottom_sheet/styles.cljs @@ -1,5 +1,6 @@ (ns status-im2.common.bottom-sheet.styles - (:require [quo2.foundations.colors :as colors])) + (:require [quo2.foundations.colors :as colors] + [status-im.utils.platform :as platform])) (defn handle [override-theme] @@ -30,7 +31,7 @@ (def shell-bg {:position :absolute - :background-color colors/white-opa-5 + :background-color (if platform/ios? colors/white-opa-5 colors/neutral-100-opa-90) :left 0 :right 0 :top 0