Only apply shadow and other styles to sticky headers on scroll, issue #279
This commit is contained in:
@ -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')) {
|
||||
|
Reference in New Issue
Block a user