fix(FIlmstrip): disable default overscrolling

With the default overscrolling policy when a user overscroll the
filmstrip the scroll focus is moved to the main window and it looks like
the scroll is not working.
This commit is contained in:
Hristo Terezov 2021-10-07 18:10:54 -05:00
parent d1a69689bc
commit f83559568d
3 changed files with 4 additions and 0 deletions

View File

@ -63,6 +63,8 @@
} }
.remote-videos { .remote-videos {
overscroll-behavior: contain;
& > div { & > div {
transition: opacity 1s; transition: opacity 1s;
position: absolute; position: absolute;

View File

@ -15,6 +15,7 @@
box-sizing: border-box; box-sizing: border-box;
display: flex; display: flex;
flex-direction: column; flex-direction: column;
overscroll-behavior: contain;
} }
.filmstrip__videos .videocontainer { .filmstrip__videos .videocontainer {

View File

@ -114,6 +114,7 @@
.remote-videos { .remote-videos {
display: flex; display: flex;
transition: height .3s ease-in; transition: height .3s ease-in;
overscroll-behavior: contain;
& > div { & > div {
position: absolute; position: absolute;