mirror of
https://github.com/lifegpc/eh-downloader.git
synced 2026-07-08 01:31:00 +08:00
Hide scrollbar on Windows Chrome
This commit is contained in:
@@ -214,3 +214,9 @@ body {
|
||||
.mdc-top-app-bar__section--align-end>* {
|
||||
margin: 0 5px;
|
||||
}
|
||||
|
||||
.task_manager .new_task {
|
||||
position: fixed;
|
||||
right: 50px;
|
||||
bottom: 50px;
|
||||
}
|
||||
|
||||
3
static/hide-scrollbar.css
Normal file
3
static/hide-scrollbar.css
Normal file
@@ -0,0 +1,3 @@
|
||||
html::-webkit-scrollbar {
|
||||
display: none;
|
||||
}
|
||||
@@ -27,7 +27,11 @@ self.addEventListener("activate", (event: ActivateEvent) => {
|
||||
event.waitUntil(deleteOldCaches());
|
||||
});
|
||||
|
||||
const CACHES = ["/common.css", "/preact-material-components/style.css"];
|
||||
const CACHES = [
|
||||
"/common.css",
|
||||
"/hide-scrollbar.css",
|
||||
"/preact-material-components/style.css",
|
||||
];
|
||||
|
||||
function match_url(u: URL) {
|
||||
const pn = u.pathname;
|
||||
|
||||
Reference in New Issue
Block a user