diff options
| author | Tulir Asokan <tulir@maunium.net> | 2021-04-22 19:12:31 +0300 |
|---|---|---|
| committer | Tulir Asokan <tulir@maunium.net> | 2021-04-22 19:12:54 +0300 |
| commit | ec8eeeeaf526a122008aace7c71e5472bce832e6 (patch) | |
| tree | be4a606c083730dcd1f330b4058dff9e36a625ba | |
| parent | 57fde6fcad692c94a7686e87501a93826a865678 (diff) | |
Fix scrolling topbar on Firefox
(and possibly break it on other browsers)
| -rw-r--r-- | web/src/index.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/web/src/index.js b/web/src/index.js index 4ac6df5..d084b37 100644 --- a/web/src/index.js +++ b/web/src/index.js @@ -220,7 +220,7 @@ class App extends Component { } navScroll(evt) { - this.navRef.scrollLeft += evt.deltaY * 12 + this.navRef.scrollLeft += evt.deltaY } render() { |
