Apply top shadow to header bottom row
This commit is contained in:
parent
e33dab9516
commit
e8a9ef2f5f
1 changed files with 2 additions and 0 deletions
|
@ -101,10 +101,12 @@ import {
|
|||
function () {
|
||||
if (window.scrollY > 50) {
|
||||
document.querySelector(".header-row-bottom").style.position = "fixed";
|
||||
document.querySelector(".header-row-bottom").style.boxShadow = "0px -40px 19px 20px black";
|
||||
document.getElementById("show-w-scroll").style.opacity = "1";
|
||||
document.getElementById("show-w-scroll").style.width = "96px";
|
||||
} else {
|
||||
document.querySelector(".header-row-bottom").style.position = "inherit";
|
||||
document.querySelector(".header-row-bottom").style.boxShadow = "none";
|
||||
document.getElementById("show-w-scroll").style.opacity = "0";
|
||||
document.getElementById("show-w-scroll").style.width = "0";
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue