From dfb36e179215560e52f101768118ecdb418265e6 Mon Sep 17 00:00:00 2001 From: Ashwin Bhat Date: Thu, 19 Dec 2024 12:14:20 -0800 Subject: [PATCH] feat: use monospace font for all input fields in sidebar Makes command, arguments, URL and environment variables easier to read and edit. --- client/src/components/Sidebar.tsx | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/client/src/components/Sidebar.tsx b/client/src/components/Sidebar.tsx index 17a4174..0463cac 100644 --- a/client/src/components/Sidebar.tsx +++ b/client/src/components/Sidebar.tsx @@ -86,6 +86,7 @@ const Sidebar = ({ placeholder="Command" value={command} onChange={(e) => setCommand(e.target.value)} + className="font-mono" />
@@ -94,6 +95,7 @@ const Sidebar = ({ placeholder="Arguments (space-separated)" value={args} onChange={(e) => setArgs(e.target.value)} + className="font-mono" />
@@ -104,6 +106,7 @@ const Sidebar = ({ placeholder="URL" value={sseUrl} onChange={(e) => setSseUrl(e.target.value)} + className="font-mono" /> )} @@ -135,6 +138,7 @@ const Sidebar = ({ newEnv[e.target.value] = value; setEnv(newEnv); }} + className="font-mono" />