You've already forked matrix-react-sdk
mirror of
https://github.com/matrix-org/matrix-react-sdk.git
synced 2025-08-10 19:43:07 +03:00
Fix Jitsi Meet getting wedged on startup in Chrome and Safari
This commit is contained in:
@@ -36,6 +36,14 @@ limitations under the License.
|
|||||||
|
|
||||||
// While the lobby is shown, the widget needs to stay loaded but hidden in the background
|
// While the lobby is shown, the widget needs to stay loaded but hidden in the background
|
||||||
.mx_VideoLobby ~ .mx_AppTile {
|
.mx_VideoLobby ~ .mx_AppTile {
|
||||||
display: none;
|
// You'd think this could just be a display: none or visibility: hidden,
|
||||||
|
// but for some reason that causes Jitsi Meet to get wedged on startup
|
||||||
|
// in Chrome and Safari, so we instead make it nearly dimensionless and
|
||||||
|
// push it way out of sight
|
||||||
|
min-width: 0;
|
||||||
|
width: 1px;
|
||||||
|
height: 1px;
|
||||||
|
position: fixed;
|
||||||
|
top: -100px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user