mirror of
https://github.com/th-ch/youtube-music.git
synced 2026-01-14 11:51:47 +00:00
14 lines
442 B
JavaScript
14 lines
442 B
JavaScript
const customTitlebar = require("custom-electron-titlebar");
|
|
|
|
module.exports = () => {
|
|
const bar = new customTitlebar.Titlebar({
|
|
backgroundColor: customTitlebar.Color.fromHex("#050505"),
|
|
minimizable: false,
|
|
maximizable: false,
|
|
menu: null
|
|
});
|
|
let mainStyle = document.querySelector('#container').style;
|
|
mainStyle.width = '100%';
|
|
mainStyle.position = 'fixed';
|
|
mainStyle.border = 'unset';
|
|
} |