Fix scrollbar not hiding in Firefox

This commit is contained in:
redphx 2024-04-05 21:31:47 +07:00
parent 1966c7c127
commit 6f8f425003

View File

@ -9817,6 +9817,10 @@ body:not([data-media-type=tv]) div[class*=MenuItem-module__label] {
// Hide scrollbar
if (getPref(Preferences.UI_SCROLLBAR_HIDE)) {
css += `
html {
scrollbar-width: none;
}
body::-webkit-scrollbar {
display: none;
}