Bottom sheet background on Android changed to overcome issues with blur (#16009)
This commit is contained in:
parent
0cc631ce2e
commit
e1e596cf5f
|
@ -1,5 +1,6 @@
|
||||||
(ns status-im2.common.bottom-sheet.styles
|
(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
|
(defn handle
|
||||||
[override-theme]
|
[override-theme]
|
||||||
|
@ -30,7 +31,7 @@
|
||||||
|
|
||||||
(def shell-bg
|
(def shell-bg
|
||||||
{:position :absolute
|
{:position :absolute
|
||||||
:background-color colors/white-opa-5
|
:background-color (if platform/ios? colors/white-opa-5 colors/neutral-100-opa-90)
|
||||||
:left 0
|
:left 0
|
||||||
:right 0
|
:right 0
|
||||||
:top 0
|
:top 0
|
||||||
|
|
Loading…
Reference in New Issue