mirror of
https://github.com/th-ch/youtube-music.git
synced 2026-01-11 10:31:47 +00:00
15 lines
398 B
TypeScript
15 lines
398 B
TypeScript
import { Titlebar, Color } from 'custom-electron-titlebar';
|
|
|
|
export default () => {
|
|
new Titlebar({
|
|
backgroundColor: Color.fromHex('#050505'),
|
|
minimizable: false,
|
|
maximizable: false,
|
|
menu: undefined,
|
|
});
|
|
const mainStyle = (document.querySelector('#container') as HTMLElement)!.style;
|
|
mainStyle.width = '100%';
|
|
mainStyle.position = 'fixed';
|
|
mainStyle.border = 'unset';
|
|
};
|