diff --git a/src/status_im/common/floating_button_page/floating_container/view.cljs b/src/status_im/common/floating_button_page/floating_container/view.cljs index b2d1a752ba..809795c78c 100644 --- a/src/status_im/common/floating_button_page/floating_container/view.cljs +++ b/src/status_im/common/floating_button_page/floating_container/view.cljs @@ -1,6 +1,7 @@ (ns status-im.common.floating-button-page.floating-container.view (:require [quo.core :as quo] + [quo.foundations.colors :as colors] [quo.theme :as quo.theme] [react-native.core :as rn] [status-im.common.floating-button-page.floating-container.style :as style])) @@ -9,9 +10,15 @@ [child] (let [theme (quo.theme/use-theme)] [quo/blur - {:blur-amount 12 - :blur-radius 12 - :blur-type theme} + {:blur-amount 12 + :blur-radius 12 + :blur-type :transparent + :overlay-color (colors/theme-colors colors/white-opa-70 + colors/bottom-sheet-background-blur + theme) + :background-color (colors/theme-colors colors/white-opa-70 + colors/bottom-sheet-background-blur + theme)} [rn/view {:style style/blur-inner-container} child]]))