Quellcode durchsuchen

Avoid an extra pixel outside the terminal

Alessandro Pignotti vor 9 Monaten
Ursprung
Commit
a7c4bc573c
1 geänderte Dateien mit 1 neuen und 1 gelöschten Zeilen
  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>