update code for #59

This commit is contained in:
Jeongkyu Shin 2019-10-15 19:57:11 +09:00
parent f75d5ada4b
commit 6c84410481
2 changed files with 6 additions and 5 deletions

View file

@ -129,5 +129,5 @@
}
.etab-view {
position: relative;
}

View file

@ -8,16 +8,17 @@ if (!document) {
(function () {
const styles = `
webview {
width: 0px;
height: 0px;
}
webview.visible {
width: 100%;
height: 100%;
top: 0;
right: 0;
bottom: 0;
left: 0;
position: absolute;
visibility: hidden;
}
webview.visible {
visibility: visible;
}
`;
let styleTag = document.createElement("style");