New plugin: Blur navigation bar

This commit is contained in:
cdaydreamer
2021-10-23 15:38:46 +03:00
parent f2e04f9170
commit c897bedd90
3 changed files with 15 additions and 0 deletions

View File

@ -0,0 +1,6 @@
const path = require("path");
const { injectCSS } = require("../utils");
module.exports = win => {
injectCSS(win.webContents, path.join(__dirname, "style.css"));
};

View File

@ -0,0 +1,8 @@
#nav-bar-background {
background: rgba(0, 0, 0, 0.3) !important;
backdrop-filter: blur(18px) !important;
}
#nav-bar-divider {
display: none !important;
}