mirror of
https://github.com/Equicord/Equicord.git
synced 2025-02-12 21:04:24 -05:00
6 lines
289 B
TypeScript
6 lines
289 B
TypeScript
|
document.addEventListener("DOMContentLoaded", async () => {
|
||
|
const style = document.createElement("style");
|
||
|
document.head.appendChild(style);
|
||
|
VencordNative.handleQuickCssUpdate((css: string) => style.innerText = css);
|
||
|
style.innerText = await VencordNative.getQuickCss();
|
||
|
});
|