Bottom sheet background on Android changed to overcome issues with blur (#16009)

This commit is contained in:
Volodymyr Kozieiev 2023-05-24 19:58:47 +01:00 committed by GitHub
parent 0cc631ce2e
commit e1e596cf5f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 2 deletions

View File

@ -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