Scroll to top not working in FireFox
Opened this issue · 2 comments
vinuel commented
I’m using the addon to have a simple scroll-to-top on my site. It works great in Chrome and Opera,
but nothing happens in FireFox (Windows, FF 51.0.1).
vinuel commented
Just FYI: I fixed this by putting the following to my CSS:
@-moz-document url-prefix() {
html { overflow: hidden; height: 100%; }
body { overflow: auto; height: 100%; }
}