use smooth scrolling

Tells browser to use smooth scrolling to animate scroll
https://developer.mozilla.org/en-US/docs/Web/API/Window/scrollTo
This commit is contained in:
DispatchCommit 2021-01-25 17:21:32 -08:00 committed by Sean Yesmunt
parent 1698ca8775
commit 599f9e106e

View file

@ -14,7 +14,10 @@ function PublishPage(props: Props) {
function scrollToTop() {
const mainContent = document.querySelector('main');
if (mainContent) {
mainContent.scrollTop = 0; // It would be nice to animate this
mainContent.scrollTo({
top: 0,
behavior: 'smooth',
});
}
}