mirror of
https://github.com/Nystik-gh/ignis.git
synced 2026-06-17 04:35:53 +00:00
10 lines
328 B
JavaScript
10 lines
328 B
JavaScript
|
|
// Injects a link to the CSS overrides stylesheet served from /assets/overrides.css.
|
||
|
|
|
||
|
|
export function installCssOverrides() {
|
||
|
|
const link = document.createElement("link");
|
||
|
|
link.rel = "stylesheet";
|
||
|
|
link.href = "/assets/overrides.css";
|
||
|
|
link.setAttribute("data-ignis", "css-overrides");
|
||
|
|
document.head.appendChild(link);
|
||
|
|
}
|