Some small tweaks

This commit is contained in:
Gregory Schier
2023-02-28 17:25:59 -08:00
parent be7ef7beb1
commit aebfcb9437
8 changed files with 49 additions and 37 deletions

View File

@@ -45,7 +45,13 @@ export function UrlBar({ sendRequest, loading, onMethodChange, method, onUrlChan
{ label: 'HEAD', value: 'HEAD' },
]}
>
<Button type="button" disabled={loading} size="sm" className="ml-1" justify="start">
<Button
type="button"
disabled={loading}
size="sm"
className="ml-1 !px-2"
justify="start"
>
{method.toUpperCase()}
</Button>
</DropdownMenuRadio>
@@ -56,7 +62,7 @@ export function UrlBar({ sendRequest, loading, onMethodChange, method, onUrlChan
spin={loading}
disabled={loading}
size="sm"
className="mr-1"
className="mr-1 !px-2"
/>
}
/>