blob: 724fde87cfa792bc60608c87d62f6015992f894c (
plain)
1
2
3
4
5
6
|
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();
});
|