Skip to content

Commit 25ec8cb

Browse files
committed
make watermark float
1 parent 3f845fb commit 25ec8cb

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

src/Boot.tsx

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -388,10 +388,13 @@ window.addEventListener("load", async () => {
388388
const ActivateMark = document.createElement("span");
389389
ActivateMark.setAttribute(
390390
"style",
391-
"position: absolute; bottom: 70px; right: 30px; color: white; opacity: 0.8",
391+
"position: absolute; bottom: 70px; right: 30px; color: white; opacity: 0.8; z-index: 99999999; user-select: none; webkit-user-select: none; pointer-events: none;",
392392
);
393393
ActivateMark.innerHTML =
394-
"<h2>Activate AnuraOS</h2><p>Enter your product key to activate AnuraOS.</p>";
394+
"<h2 style='margin-bottom: 0;'>Activate AnuraOS</h2><p style='margin-top: 0.5rem;'>Open Settings to activate AnuraOS.</p>";
395+
// ActivateMark.onclick = () => {
396+
// anura.apps["anura.settings"].open();
397+
// }
395398
document.body.appendChild(ActivateMark);
396399
}
397400
}

0 commit comments

Comments
 (0)