mirror of
https://github.com/Equicord/Equicord.git
synced 2025-02-12 14:43:44 -05:00
6 lines
No EOL
289 B
TypeScript
6 lines
No EOL
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();
|
|
}); |