소스 검색

Avoid an extra pixel outside the terminal

Alessandro Pignotti 10 달 전
부모
커밋
a7c4bc573c
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      src/App.svelte

+ 1 - 1
src/App.svelte

@@ -119,7 +119,7 @@
 	<Nav />
 	<div class="flex flex-row flex-grow">
 		<SideBar />
-		<div class="grow h-full m-1 scrollbar" id="console">
+		<div class="grow h-full p-1 scrollbar" id="console">
 		</div>
 	</div>
 </main>