Merge pull request #665 from Stremio/fix/list-container-overflow-mobile

fix(MetaDetails): list container overflow on mobile
This commit is contained in:
Tim 2024-07-26 15:03:03 +02:00 committed by GitHub
commit 3a3601a32a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 5 additions and 0 deletions

View file

@ -182,6 +182,7 @@
.streams-container {
margin-top: 0;
overflow: visible;
scrollbar-color: @color-surface-light5-20 transparent;
&::-webkit-scrollbar-thumb {

View file

@ -74,5 +74,9 @@
@media only screen and (max-width: @minimum) {
.videos-list-container {
overflow: visible;
.videos-container {
overflow: auto;
}
}
}