Skip to content

Commit

Permalink
Fixed fixes.css
Browse files Browse the repository at this point in the history
  • Loading branch information
nin0-dev committed Jun 25, 2024
1 parent 5e8da13 commit bf48e04
Showing 1 changed file with 14 additions and 8 deletions.
22 changes: 14 additions & 8 deletions app/src/main/res/raw/vencord_mobile.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,12 +35,18 @@
}
};

document.addEventListener("DOMContentLoaded", () => document.documentElement.appendChild(
Object.assign(document.createElement("link"), {
rel: "stylesheet",
type: "text/css",
href: "https://github.com/Vendicated/Vencord/releases/download/devbuild/browser.css",
href: "https://raw.githubusercontent.com/VendroidEnhanced/Vencord/main/src/utils/fixes.css"
})
), { once: true });
document.addEventListener("DOMContentLoaded", () => {
document.documentElement.appendChild(
Object.assign(document.createElement("link"), {
rel: "stylesheet",
type: "text/css",
href: "https://github.com/Vendicated/Vencord/releases/download/devbuild/browser.css"
}));
document.documentElement.appendChild(
Object.assign(document.createElement("link"), {
rel: "stylesheet",
type: "text/css",
href: "https://github.com/VendroidEnhanced/plugin/releases/download/css/fixes.css"
}));
}, { once: true });
})();

0 comments on commit bf48e04

Please sign in to comment.