Skip to content

Commit

Permalink
fix: corrige scrollbar
Browse files Browse the repository at this point in the history
  • Loading branch information
renanstankev committed Jun 25, 2023
1 parent 3f36b4b commit b4fdc0f
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions src/home/home.js
Original file line number Diff line number Diff line change
Expand Up @@ -223,9 +223,3 @@ function toggleDone(todoId, columnId) {
}
}

var item = document.getElementById("columns-container");

window.addEventListener("wheel", function (e) {
if (e.deltaY > 0) item.scrollLeft += 100;
else item.scrollLeft -= 100;
});

0 comments on commit b4fdc0f

Please sign in to comment.