blob: 573eccc009419d33dd58c66750d95ddced395df4 (
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();
});
|