浏览代码

refac: gesture sensitivity

Timothy J. Baek 1 年之前
父节点
当前提交
180fd44a4d
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      src/lib/components/layout/Sidebar.svelte

+ 1 - 1
src/lib/components/layout/Sidebar.svelte

@@ -54,7 +54,7 @@
 		function checkDirection() {
 			const screenWidth = window.innerWidth;
 			const swipeDistance = Math.abs(touchend.screenX - touchstart.screenX);
-			if (touchstart.clientX < 40 && swipeDistance >= screenWidth / 4) {
+			if (touchstart.clientX < 40 && swipeDistance >= screenWidth / 8) {
 				if (touchend.screenX < touchstart.screenX) {
 					showSidebar.set(false);
 				}