fix(ui): add spacing between Port label and input field

Changed layout from vertical stack (space-y-1) to horizontal flex
with gap (flex items-center gap-2) to properly space the Port label
and input field in the local proxy settings card.
This commit is contained in:
kaitranntt
2026-01-18 15:45:28 -05:00
parent d8f81b817e
commit 1eeb8f922d
@@ -31,7 +31,7 @@ export function LocalProxyCard({
<h3 className="text-base font-medium">Local Proxy</h3>
<div className="space-y-3 p-4 rounded-lg border bg-muted/30">
{/* Port */}
<div className="space-y-1">
<div className="flex items-center gap-2">
<label className="text-sm text-muted-foreground">Port</label>
<Input
type="number"