fucks sake
This commit is contained in:
parent
7a673cd588
commit
151d84c9ff
2 changed files with 6 additions and 1 deletions
|
@ -1,4 +1,9 @@
|
|||
// IF YOU EDIT ANYTHING IN HERE DONT FORGET TO EDIT THE SCRIPT IN LAYOUT.ASTRO BECAUSE FUCK ME
|
||||
function onload() {
|
||||
if (sessionStorage.getItem("sgaEnabled")) {
|
||||
enableSGA()
|
||||
}
|
||||
}
|
||||
|
||||
function enableSGA() {
|
||||
document.getElementById("body").style.fontFamily = "standardGalactic, system-ui";
|
||||
|
|
|
@ -16,7 +16,7 @@ const { title } = Astro.props;
|
|||
<head>
|
||||
<Head title={title} />
|
||||
</head>
|
||||
<body onload="test" id="body">
|
||||
<body onload="onload()" id="body">
|
||||
<Header />
|
||||
<section class="content center">
|
||||
<h1 class="title">{title}</h1>
|
||||
|
|
Loading…
Reference in a new issue