automatically resize sandbox iframes

This commit is contained in:
りき萌 2024-02-18 10:58:57 +01:00
parent 51de33c2b5
commit 0580db6c68
3 changed files with 18 additions and 7 deletions

View file

@ -574,6 +574,7 @@ th-literate-program[data-mode="graphics"] {
& iframe {
border-style: none;
border-radius: 4px;
display: block;
}
/* The inner iframe is hidden until something requests display. */

View file

@ -6,11 +6,5 @@ export class Sketch {
this.ctx = this.canvas.getContext("2d");
document.body.appendChild(this.canvas);
postMessage({
kind: "resize",
width,
height,
});
}
}