mobile support, idek

This commit is contained in:
sky
2025-08-17 19:13:08 -04:00
parent b6c7d612a4
commit f99c78c0a8
26 changed files with 146 additions and 12000 deletions

View File

@ -23,7 +23,7 @@ function cursor() {
cursor.style.backgroundColor = "var(--color-1)";
cursor.style.position = "absolute";
cursor.style.borderRadius = "100%";
cursor.style.filter = "blur(40px)";
cursor.style.filter = "blur(60px)";
cursor.style.opacity = "1";
cursor.style.pointerEvents = "none";
document.body.appendChild(cursor);
@ -37,9 +37,11 @@ function themes() {
}
document.addEventListener("DOMContentLoaded", ()=>{
setBackground();
loadPJS();
cursor();
if(!(localStorage.getItem("selenite.fast-mode") == 'true')) {
setBackground();
loadPJS();
cursor();
}
themes();
})