JSFiddle - React, Tailwind, and code Playground
HTML
Content
CSS
html,body{
width:110%;
height:110%;
}
JavaScript
$('body')
.bind('mousewheel DOMMouseScroll', function(e) {
if (e.originalEvent.wheelDeltaX == 0) {
e.preventDefault();
}
});