Disable scrollbar on mobile

This commit is contained in:
WardPearce
2024-09-23 07:16:02 +12:00
parent 7444a7d344
commit 66b8976f54
3 changed files with 13 additions and 1 deletions
+3
View File
@@ -149,6 +149,9 @@ services:
# Look at "Overwriting Materialious defaults" for all the accepted values.
VITE_DEFAULT_SETTINGS: '{"themeColor": "#2596be","region": "US"}'
# Set the default video/audio bitrate to use, -1 automatic, 999999 always best quality
VITE_DEFAULT_DASH_BITRATE: -1
# Please look at step 7 about enabling this.
VITE_DEFAULT_DOWNLOAD_ENABLED: false
```
-1
View File
@@ -41,7 +41,6 @@ Materialious allows you to customize various settings by overwriting the default
+ [DeArrow Instance](#dearrow-instance)
+ [DeArrow Thumbnail Instance](#dearrow-thumbnail-instance)
+ [DeArrow Titles Only](#dearrow-titles-only)
* [Bookmarklet](#bookmarklet)
## Theme
+10
View File
@@ -68,3 +68,13 @@ main.root {
padding-right: 0.1em !important;
}
}
@media screen and (max-width: 650px) {
main.root {
scrollbar-width: none !important;
}
main.root::-webkit-scrollbar {
display: none !important;
}
}