Browse Source

Fix scrolling topbar on Firefox

(and possibly break it on other browsers)
pull/37/head
Tulir Asokan 4 years ago
parent
commit
ec8eeeeaf5
  1. 2
      web/src/index.js

2
web/src/index.js

@ -220,7 +220,7 @@ class App extends Component {
} }
navScroll(evt) { navScroll(evt) {
this.navRef.scrollLeft += evt.deltaY * 12
this.navRef.scrollLeft += evt.deltaY
} }
render() { render() {

Loading…
Cancel
Save