Skip to content

Commit

Permalink
fix: iframe styles
Browse files Browse the repository at this point in the history
  • Loading branch information
nathan-vm committed Dec 18, 2023
1 parent e75b378 commit a422bfc
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion frontend/src/components/HTMLRender/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,9 @@ const HtmlRenderer: React.FC<Props> = ({ html }) => {
<iframe
title="html-renderer"
srcDoc={html}
style={{ border: "none", width: "auto", height: "auto" }}
width="100%"
height="100%"
style={{ border: "none" }}
></iframe>
);
};
Expand Down

0 comments on commit a422bfc

Please sign in to comment.