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