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%.
This commit is contained in:
Leonard Kim 2018-06-21 09:38:48 -07:00 committed by Дамян Минков
parent 7ee63a44c5
commit e431acda18
1 changed files with 5 additions and 0 deletions

View File

@ -14,6 +14,11 @@ textarea {
user-select: text;
}
html {
height: 100%;
width: 100%;
}
body {
margin: 0px;
width: 100%;