From 0d5050a00449b9ed82b81adf3b76771a709996aa Mon Sep 17 00:00:00 2001 From: Greg Gauthier Date: Thu, 27 Jun 2024 19:15:28 +0100 Subject: [PATCH] shrink the height --- web/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/index.html b/web/index.html index 0e7d10c..551df53 100644 --- a/web/index.html +++ b/web/index.html @@ -36,7 +36,7 @@ iframe.style.width = '100%'; // make the iframe take full width of the container iframe.style.border = 'none'; // hide the border iframe.style.overflow = 'hidden'; // hide scrollbars, can be 'auto' if you prefer automatic scrollbars - iframe.style.height = '1000px'; // set a height so that the iframe is visible, adjust as per your needs + iframe.style.height = '750px'; // set a height so that the iframe is visible, adjust as per your needs document.getElementById("toolPanel").innerHTML = ''; document.getElementById("toolPanel").appendChild(iframe); }