mirror of
https://github.com/th-ch/youtube-music.git
synced 2026-01-11 18:41:47 +00:00
fix: Laggy scrolling behaviour in large playlists (#2708)
This commit is contained in:
@ -5,9 +5,12 @@
|
||||
|
||||
/* youtube-music style */
|
||||
ytmusic-app-layout {
|
||||
overflow: scroll;
|
||||
overflow: auto scroll;
|
||||
height: calc(100vh - var(--menu-bar-height, 36px));
|
||||
margin-top: var(--menu-bar-height, 36px) !important;
|
||||
|
||||
/* fixes laggy list scrolling in large playlists */
|
||||
backface-visibility: hidden;
|
||||
}
|
||||
ytmusic-app-layout#layout {
|
||||
--ytmusic-nav-bar-offset: 0px;
|
||||
@ -72,3 +75,8 @@ ytmusic-app-layout ytmusic-player-page[is-mweb-modernization-enabled] .side-pane
|
||||
html {
|
||||
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