diff --git a/src/embeddedSandbox/EmbeddedSandbox.ts b/src/embeddedSandbox/EmbeddedSandbox.ts index b4a37d9c..eef57ec8 100644 --- a/src/embeddedSandbox/EmbeddedSandbox.ts +++ b/src/embeddedSandbox/EmbeddedSandbox.ts @@ -64,7 +64,10 @@ export class EmbeddedSandbox { }`; iframeElement.id = IFRAME_DOM_ID(this.uniqueEmbedInstanceId); - iframeElement.setAttribute('style', 'height: 100%; width: 100%'); + iframeElement.setAttribute( + 'style', + 'height: 100%; width: 100%; border: none;' + ); element?.appendChild(iframeElement);