Start of themes

This commit is contained in:
Gregory Schier
2023-03-07 11:24:38 -08:00
parent c0d7962142
commit db2d786d50
24 changed files with 1490 additions and 156 deletions

View File

@@ -58,8 +58,8 @@ export function UrlBar({
<Button
type="button"
disabled={loading}
size="sm"
className="ml-1 mr-2 !px-2 !text-gray-800"
size="xs"
className="mx-0.5 !text-gray-800"
justify="start"
>
{method.toUpperCase()}
@@ -69,11 +69,11 @@ export function UrlBar({
rightSlot={
<IconButton
type="submit"
size="sm"
icon={loading ? 'update' : 'paper-plane'}
className="mr-0.5"
size="xs"
icon={loading ? 'update' : 'paperPlane'}
spin={loading}
disabled={loading}
className="mx-1 !px-4"
title="Send Request"
/>
}