From 0f22a09cc20382c879f2f67a0199472cb3ef2011 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pau=20Ferrer=20Oca=C3=B1a?= Date: Wed, 8 Jul 2020 13:01:17 +0200 Subject: [PATCH] MOBILE-3481 iframe: Add max width and height to parent iframe div --- src/components/iframe/iframe.scss | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/components/iframe/iframe.scss b/src/components/iframe/iframe.scss index 782a554cb..d99e54aae 100644 --- a/src/components/iframe/iframe.scss +++ b/src/components/iframe/iframe.scss @@ -1,4 +1,9 @@ ion-app.app-root core-iframe { + + > div { + max-width: 100%; + max-height: 100%; + } iframe { border: 0; display: block;