Skip to content

Commit

Permalink
no border on embedded sandbox (#91)
Browse files Browse the repository at this point in the history
  • Loading branch information
mayakoneval authored May 10, 2022
1 parent d209eef commit 7e6c781
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/embeddedSandbox/EmbeddedSandbox.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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);

Expand Down

0 comments on commit 7e6c781

Please sign in to comment.