change iFrame minHeight to 90vh
This commit is contained in:
parent
ce2cdaf9e4
commit
ecb4415e9d
1 changed files with 1 additions and 1 deletions
|
@ -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%"
|
||||||
|
|
Loading…
Reference in a new issue