mirror of
https://github.com/th-ch/youtube-music.git
synced 2026-01-11 02:31:45 +00:00
14 lines
287 B
TypeScript
14 lines
287 B
TypeScript
import { BrowserWindow } from 'electron';
|
|
|
|
import style from './style.css';
|
|
|
|
import { injectCSS } from '../utils';
|
|
|
|
export function handle(win: BrowserWindow) {
|
|
injectCSS(win.webContents, style, () => {
|
|
win.webContents.send('navigation-css-ready');
|
|
});
|
|
}
|
|
|
|
export default handle;
|