From ccabd84568ea4dd96bb3d2bfd18aab9c636c7f50 Mon Sep 17 00:00:00 2001 From: LordMathis Date: Mon, 15 Sep 2025 21:36:24 +0200 Subject: [PATCH] Add margin to textarea in ParseCommandDialog for improved spacing --- webui/src/components/ParseCommandDialog.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webui/src/components/ParseCommandDialog.tsx b/webui/src/components/ParseCommandDialog.tsx index 52631ea..6b14eaa 100644 --- a/webui/src/components/ParseCommandDialog.tsx +++ b/webui/src/components/ParseCommandDialog.tsx @@ -85,7 +85,7 @@ const ParseCommandDialog: React.FC = ({ value={command} onChange={(e) => setCommand(e.target.value)} placeholder="llama-server --model /path/to/model.gguf --gpu-layers 32 --ctx-size 4096" - className="w-full h-32 p-3 border border-input rounded-md font-mono text-sm resize-vertical focus:outline-none focus:ring-2 focus:ring-ring focus:ring-offset-2" + className="w-full h-32 p-3 mt-2 border border-input rounded-md font-mono text-sm resize-vertical focus:outline-none focus:ring-2 focus:ring-ring focus:ring-offset-2" />