Only apply shadow and other styles to sticky headers on scroll, issue #279

This commit is contained in:
prototypa
2023-12-01 11:04:47 -05:00
parent 0dc98a56f2
commit ee5bb1747a
2 changed files with 2 additions and 1 deletions

View File

@ -97,7 +97,7 @@ import { UI } from '~/utils/config';
});
function appyHeaderStylesOnScroll() {
const header = document.getElementById('header');
const header = document.querySelector("#header[data-aw-sticky-header]");
if (lastKnownScrollPosition > 60 && !header.classList.contains('scroll')) {
document.getElementById('header').classList.add('scroll');
} else if (lastKnownScrollPosition <= 60 && header.classList.contains('scroll')) {