change iFrame minHeight to 90vh

This commit is contained in:
viehlieb 2022-09-22 16:20:32 +02:00
parent ce2cdaf9e4
commit ecb4415e9d

View file

@ -4,7 +4,7 @@ import Iframe from 'react-iframe';
export const AppIframe: React.FC<any> = ({ app }: { app: any }) => { export const AppIframe: React.FC<any> = ({ app }: { app: any }) => {
return ( return (
<div className="relative"> <div className="relative">
<div className="min-h-screen"> <div style={{ minHeight: '90vh' }}>
<Iframe <Iframe
height="100%" height="100%"
width="100%" width="100%"