mirror of
https://github.com/GiriNeko/YesPlayMusic.git
synced 2025-12-16 13:17:46 +00:00
* fix(lyrics): hide the scrollbar in lyrics page close #571 * fix(tracklist): close context menu when scrolling * fix: disable scrolling when modal show
7 lines
233 B
JavaScript
7 lines
233 B
JavaScript
export function disableScrolling() {
|
|
document.documentElement.style.setProperty('--html-overflow-y', 'hidden');
|
|
}
|
|
|
|
export function enableScrolling() {
|
|
document.documentElement.style.setProperty('--html-overflow-y', 'overlay');
|
|
}
|