Fix indentation

This commit is contained in:
Leilukin 2024-04-18 13:18:23 +08:00 committed by Helen Chong
parent eec73db7d6
commit 257ee90ad9

View File

@ -68,9 +68,9 @@
const scrollPos = window.scrollY || document.documentElement.scrollTop; const scrollPos = window.scrollY || document.documentElement.scrollTop;
const stickyLine = hero.scrollHeight - navbar.scrollHeight; const stickyLine = hero.scrollHeight - navbar.scrollHeight;
if (scrollPos > stickyLine) { if (scrollPos > stickyLine) {
navbar.classList.add("nav--sticky"); navbar.classList.add("nav--sticky");
} else { } else {
navbar.classList.remove("nav--sticky"); navbar.classList.remove("nav--sticky");
} }
}); });
</script> </script>