fix(tracker-assist): z-index max

This commit is contained in:
ShiKhu 2021-07-13 14:20:09 +03:00
parent 99ee0d953e
commit 8f92709696
2 changed files with 2 additions and 1 deletions

View file

@ -12,7 +12,7 @@ export default class CallWindow {
const iframe = this.iframe = document.createElement('iframe');
Object.assign(iframe.style, {
position: "absolute",
zIndex: "999999",
zIndex: 2147483647 - 1,
//borderRadius: ".25em .25em .4em .4em",
//border: "4px rgba(0, 0, 0, .7)",
border: "none",

View file

@ -59,6 +59,7 @@ export default class Confirm {
height: "100%",
width: "100%",
pointerEvents: "none",
zIndex: 2147483647 - 1,
})
wrapper.appendChild(popup);