Skip to content

Commit 1abb7ca

Browse files
authored
Merge pull request modelcontextprotocol#119 from modelcontextprotocol/ashwin/font
feat: use monospace font for all input fields in sidebar
2 parents ef32a8f + dfb36e1 commit 1abb7ca

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

client/src/components/Sidebar.tsx

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,7 @@ const Sidebar = ({
8686
placeholder="Command"
8787
value={command}
8888
onChange={(e) => setCommand(e.target.value)}
89+
className="font-mono"
8990
/>
9091
</div>
9192
<div className="space-y-2">
@@ -94,6 +95,7 @@ const Sidebar = ({
9495
placeholder="Arguments (space-separated)"
9596
value={args}
9697
onChange={(e) => setArgs(e.target.value)}
98+
className="font-mono"
9799
/>
98100
</div>
99101
</>
@@ -104,6 +106,7 @@ const Sidebar = ({
104106
placeholder="URL"
105107
value={sseUrl}
106108
onChange={(e) => setSseUrl(e.target.value)}
109+
className="font-mono"
107110
/>
108111
</div>
109112
)}
@@ -135,6 +138,7 @@ const Sidebar = ({
135138
newEnv[e.target.value] = value;
136139
setEnv(newEnv);
137140
}}
141+
className="font-mono"
138142
/>
139143
<Input
140144
placeholder="Value"
@@ -144,6 +148,7 @@ const Sidebar = ({
144148
newEnv[key] = e.target.value;
145149
setEnv(newEnv);
146150
}}
151+
className="font-mono"
147152
/>
148153
</div>
149154
<Button

0 commit comments

Comments
 (0)