fix: add padding to terminal container

Add p-3 class to terminal page container to create spacing between
the terminal and page edges, matching the padding used elsewhere on
the page (header, error messages, etc.).
This commit is contained in:
weishu
2025-12-27 21:34:47 +08:00
parent 3bdcc14ed0
commit 7c1baa28ee
+1 -1
View File
@@ -210,7 +210,7 @@ export default function TerminalPage() {
) : null}
<div className="flex-1 overflow-hidden bg-[var(--app-bg)]">
<div className="mx-auto h-full w-full max-w-content">
<div className="mx-auto h-full w-full max-w-content p-3">
<TerminalView
onMount={handleTerminalMount}
onResize={handleResize}