fix(overlays): change opacity to filter to fix chromium bug (#1735)

This commit is contained in:
gerjanvangeest 2022-06-16 10:16:54 +02:00 committed by GitHub
parent 7239d60466
commit 270c7b30b8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 1 deletions

View file

@ -0,0 +1,5 @@
---
'@lion/overlays': patch
---
fix chromium opacity bug by using filter

View file

@ -77,7 +77,7 @@ export const globalOverlaysStyle = css`
height: 100%;
z-index: -1;
background-color: #333333;
opacity: 0.3;
filter: opacity(30%);
display: none;
}