Skip to content

Commit

Permalink
Remove .bg-white in subhead
Browse files Browse the repository at this point in the history
  • Loading branch information
Quy committed Mar 26, 2021
1 parent 5abcc46 commit c851260
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build/media_source/templates/atum/js/template.es6.js
Original file line number Diff line number Diff line change
Expand Up @@ -278,9 +278,9 @@
if (subhead) {
doc.addEventListener('scroll', () => {
if (window.scrollY > 0) {
subhead.classList.add('bg-white', 'shadow-sm');
subhead.classList.add('shadow-sm');
} else {
subhead.classList.remove('bg-white', 'shadow-sm');
subhead.classList.remove('shadow-sm');
}
});
}
Expand Down

0 comments on commit c851260

Please sign in to comment.