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:
parent
d1a69689bc
commit
f83559568d
|
@ -63,6 +63,8 @@
|
|||
}
|
||||
|
||||
.remote-videos {
|
||||
overscroll-behavior: contain;
|
||||
|
||||
& > div {
|
||||
transition: opacity 1s;
|
||||
position: absolute;
|
||||
|
|
|
@ -15,6 +15,7 @@
|
|||
box-sizing: border-box;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
overscroll-behavior: contain;
|
||||
}
|
||||
|
||||
.filmstrip__videos .videocontainer {
|
||||
|
|
|
@ -114,6 +114,7 @@
|
|||
.remote-videos {
|
||||
display: flex;
|
||||
transition: height .3s ease-in;
|
||||
overscroll-behavior: contain;
|
||||
|
||||
& > div {
|
||||
position: absolute;
|
||||
|
|
Loading…
Reference in New Issue