Embed Report
html, body {
margin: 0;
padding: 0;
width: 100%;
height: 100%;
}
.iframe-container {
width: 100%;
max-width: 100%;
}
iframe {
width: 100%;
border: none;
}
function resizeIframe() {
var iframe = document.querySelector('iframe');
iframe.style.height = iframe.contentWindow.document.body.scrollHeight + 'px';
}