On small devices we do not want the panel to be less than 200px anyway, so remove that calculation. Hopefully fixes https://github.com/jitsi/jitsi-meet/issues/335#issuecomment-181144547
This commit is contained in:
parent
bb04d4574f
commit
1662481956
|
@ -3,9 +3,7 @@
|
|||
position: absolute;
|
||||
top: 0px;
|
||||
left: 0px;
|
||||
right: 0 !important;
|
||||
overflow-x: hidden;
|
||||
width: 100% !important;
|
||||
}
|
||||
|
||||
#remoteVideos {
|
||||
|
|
|
@ -13,9 +13,6 @@
|
|||
var availableWidth = window.innerWidth;
|
||||
|
||||
var panelWidth = 200;
|
||||
if (availableWidth * 0.2 < 200) {
|
||||
panelWidth = availableWidth * 0.2;
|
||||
}
|
||||
|
||||
return [panelWidth, availableHeight];
|
||||
},
|
||||
|
|
Loading…
Reference in New Issue