Stremio / stremio-web

Stremio - Freedom to Stream
GNU General Public License v2.0
1.13k stars 238 forks source link

Fix for not being able to scroll seasons dropdown #696

Closed arpitbatra123 closed 3 days ago

arpitbatra123 commented 6 days ago

Before:

Seasons dropdown is clipped, can't scroll localhost_8080_

After: Can scroll now localhost_8080_ (1) On mobile localhost_8080_ (2)

kKaskak commented 5 days ago

Hi. Could you instead modify the open state styles in src/common/MultiselectMenu/Dropdown/Dropdown.less ? This place would be more fit for the change.

You can do something like this ⇾

&.open {
   display: block;
   max-height: calc(3.2rem * 10);
   overflow: auto;
}

And also in the same file you can add the mobile styles too

Thanks for your contribution

kKaskak commented 3 days ago

https://github.com/Stremio/stremio-web/pull/697