File tree Expand file tree Collapse file tree 1 file changed +5
-0
lines changed
Expand file tree Collapse file tree 1 file changed +5
-0
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments