瀏覽代碼

chore: formatting

Timothy J. Baek 1 年之前
父節點
當前提交
2325660520
共有 1 個文件被更改,包括 2 次插入2 次删除
  1. 2 2
      src/lib/components/layout/Sidebar.svelte

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

@@ -79,10 +79,10 @@
 		};
 
 		const onResize = () => {
-			if(show && window.innerWidth < BREAKPOINT) {
+			if (show && window.innerWidth < BREAKPOINT) {
 				show = false;
 			}
-		}
+		};
 
 		document.addEventListener('touchstart', onTouchStart);
 		document.addEventListener('touchend', onTouchEnd);