let's say I have the follwing function:
window.smoothScroll = function(target) {
var scrollContainer = target;
scrollContainer.scrollIntoView(true);
}
How can I make the page scroll 20px above the element instead of scrolling to the element itself?
Thank you