mirror of
https://github.com/th-ch/youtube-music.git
synced 2026-01-11 10:31:47 +00:00
10 lines
222 B
TypeScript
10 lines
222 B
TypeScript
import path from 'node:path';
|
|
|
|
import { BrowserWindow } from 'electron';
|
|
|
|
import { injectCSS } from '../utils';
|
|
|
|
export default (win: BrowserWindow) => {
|
|
injectCSS(win.webContents, path.join(__dirname, 'style.css'));
|
|
};
|