diff --git a/frontend/public/scripts/sga.js b/frontend/public/scripts/sga.js index 9df1d96..865e68a 100644 --- a/frontend/public/scripts/sga.js +++ b/frontend/public/scripts/sga.js @@ -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"); }