fix(lyrics): hide the scrollbar in lyrics page (#605)

* fix(lyrics): hide the scrollbar in lyrics page

close #571

* fix(tracklist): close context menu when scrolling

* fix: disable scrolling when modal show
This commit is contained in:
Map1en_ 2021-04-26 22:42:10 +08:00 committed by GitHub
parent fa98085dcf
commit aa269cf2ca
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 41 additions and 19 deletions

7
src/utils/ui.js Normal file
View file

@ -0,0 +1,7 @@
export function disableScrolling() {
document.documentElement.style.setProperty('--html-overflow-y', 'hidden');
}
export function enableScrolling() {
document.documentElement.style.setProperty('--html-overflow-y', 'overlay');
}