Merge pull request 'Add z-index to popup' (#10) from main into prod

Reviewed-on: #10
pull/13/head^2
Trivernis 10 months ago
commit 0370269e52

@ -2,6 +2,7 @@
<style lang="scss">
#no-chromium-popup {
z-index: 9999;
position: fixed;
display: flex;
height: 100vh;

@ -13,7 +13,7 @@ async function showNoChromiumPopup() {
document.body.appendChild(child);
}
document.querySelector("#no-chromium-popup").style = "";
document.querySelector("#no-chromium-popup").style = "z-index: 9999;";
document.querySelector("#no-chromium-hide-button").addEventListener("click", hideNoChromiumPopup);
}
}

Loading…
Cancel
Save