From e431acda1879d6b4418a5ac16825bcac87c1ef08 Mon Sep 17 00:00:00 2001 From: Leonard Kim Date: Thu, 21 Jun 2018 09:38:48 -0700 Subject: [PATCH] ref(css): add height/width reset for html tag This is needed for newer versions of electron that might use the iframe integration of jitsi-meet. Newer versions seem to have some kind of regression with setting height and width to 100%. --- css/_base.scss | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/css/_base.scss b/css/_base.scss index 3d706dd64..529ed17f1 100644 --- a/css/_base.scss +++ b/css/_base.scss @@ -14,6 +14,11 @@ textarea { user-select: text; } +html { + height: 100%; + width: 100%; +} + body { margin: 0px; width: 100%;