mirror of
https://github.com/th-ch/youtube-music.git
synced 2026-01-14 11:51:47 +00:00
fix: Laggy scrolling behaviour in large playlists (#2708)
This commit is contained in:
@ -5,9 +5,12 @@
|
|||||||
|
|
||||||
/* youtube-music style */
|
/* youtube-music style */
|
||||||
ytmusic-app-layout {
|
ytmusic-app-layout {
|
||||||
overflow: scroll;
|
overflow: auto scroll;
|
||||||
height: calc(100vh - var(--menu-bar-height, 36px));
|
height: calc(100vh - var(--menu-bar-height, 36px));
|
||||||
margin-top: var(--menu-bar-height, 36px) !important;
|
margin-top: var(--menu-bar-height, 36px) !important;
|
||||||
|
|
||||||
|
/* fixes laggy list scrolling in large playlists */
|
||||||
|
backface-visibility: hidden;
|
||||||
}
|
}
|
||||||
ytmusic-app-layout#layout {
|
ytmusic-app-layout#layout {
|
||||||
--ytmusic-nav-bar-offset: 0px;
|
--ytmusic-nav-bar-offset: 0px;
|
||||||
@ -72,3 +75,8 @@ ytmusic-app-layout ytmusic-player-page[is-mweb-modernization-enabled] .side-pane
|
|||||||
html {
|
html {
|
||||||
scrollbar-color: unset;
|
scrollbar-color: unset;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* fixes scrollbar lagging behind in large playlists */
|
||||||
|
ytmusic-browse-response .ytmusic-responsive-list-item-renderer {
|
||||||
|
will-change: transform;
|
||||||
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user