Skip to content

Commit

Permalink
make more vertical space
Browse files Browse the repository at this point in the history
  • Loading branch information
MCarlomagno committed Dec 6, 2024
1 parent 4af3141 commit 7c73a17
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/ui/src/embed.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ window.addEventListener('message', function (e: MessageEvent<Message>) {
} else if (e.data.kind === 'oz-wizard-resize') {
const iframe = iframes.get(e.source);
if (iframe) {
iframe.style.height = unsupportedVersion ? unsupportedVersionFrameHeight : 'calc(100vh - 158px)';
iframe.style.height = unsupportedVersion ? unsupportedVersionFrameHeight : 'calc(100vh - 100px)';
}
}
}
Expand Down Expand Up @@ -60,7 +60,7 @@ onDOMContentLoaded(function () {
iframe.style.display = 'block';
iframe.style.border = '0';
iframe.style.width = '100%';
iframe.style.height = 'calc(100vh - 158px)';
iframe.style.height = 'calc(100vh - 100px)';

w.appendChild(iframe);

Expand Down

0 comments on commit 7c73a17

Please sign in to comment.