feat: use monospace font for all input fields in sidebar

Makes command, arguments, URL and environment variables easier to read and edit.
This commit is contained in:
Ashwin Bhat
2024-12-19 12:14:20 -08:00
parent ef32a8f289
commit dfb36e1792

View File

@@ -86,6 +86,7 @@ const Sidebar = ({
placeholder="Command"
value={command}
onChange={(e) => setCommand(e.target.value)}
className="font-mono"
/>
</div>
<div className="space-y-2">
@@ -94,6 +95,7 @@ const Sidebar = ({
placeholder="Arguments (space-separated)"
value={args}
onChange={(e) => setArgs(e.target.value)}
className="font-mono"
/>
</div>
</>
@@ -104,6 +106,7 @@ const Sidebar = ({
placeholder="URL"
value={sseUrl}
onChange={(e) => setSseUrl(e.target.value)}
className="font-mono"
/>
</div>
)}
@@ -135,6 +138,7 @@ const Sidebar = ({
newEnv[e.target.value] = value;
setEnv(newEnv);
}}
className="font-mono"
/>
<Input
placeholder="Value"
@@ -144,6 +148,7 @@ const Sidebar = ({
newEnv[key] = e.target.value;
setEnv(newEnv);
}}
className="font-mono"
/>
</div>
<Button