diff --git a/app/main.js b/app/main.js index 3337cb0..4e3d041 100644 --- a/app/main.js +++ b/app/main.js @@ -289,6 +289,27 @@ app.on("web-contents-created", (event, contents) => { } } } + contents.insertCSS( + ` + ::-webkit-scrollbar { + width: 8px; + height: 8px; + } + + ::-webkit-scrollbar-track { + background: transparent; + } + + ::-webkit-scrollbar-thumb { + background: transparent; + border-radius: 5px; + } + + ::-webkit-scrollbar-thumb:hover { + background: #555; + } + ` + ); }); });