This commit is contained in:
2025-02-06 17:14:33 +05:30
parent e319f46ac2
commit e0d8815b10
17 changed files with 72 additions and 19 deletions

View File

@@ -0,0 +1,7 @@
window.addEventListener("load", function() {
setTimeout(() => {
document.querySelector(".preloader").classList.add("hidden");
document.documentElement.style.overflow = "auto";
document.body.style.overflow = "auto";
}, 3500);
});