main #8

Closed
limepotato wants to merge 183 commits from main into blog-drafts
Showing only changes of commit 7338da5d21 - Show all commits

View file

@ -5,13 +5,13 @@ function getSGAState() {
}
function enableSGA() {
document.getElementById("body").style.fontFamily =
document.body.style.fontFamily =
"standardGalactic, system-ui";
sessionStorage.setItem("sgaEnabled", 1);
}
function disableSGA() {
document.getElementById("body").style.fontFamily =
document.body.style.fontFamily =
"departure-mono, system-ui";
sessionStorage.removeItem("sgaEnabled");
}