diff --git a/apps/yaak-client/commands/openFolderSettings.tsx b/apps/yaak-client/commands/openFolderSettings.tsx index 5ef2c77a..e08ad576 100644 --- a/apps/yaak-client/commands/openFolderSettings.tsx +++ b/apps/yaak-client/commands/openFolderSettings.tsx @@ -10,7 +10,7 @@ export function openFolderSettings(folderId: string, tab?: FolderSettingsTab) { id: "folder-settings", title: null, size: "lg", - className: "h-[50rem]", + className: "h-200", noPadding: true, render: () => , }); diff --git a/apps/yaak-client/components/BinaryFileEditor.tsx b/apps/yaak-client/components/BinaryFileEditor.tsx index 7fc3d458..ccab5fa6 100644 --- a/apps/yaak-client/components/BinaryFileEditor.tsx +++ b/apps/yaak-client/components/BinaryFileEditor.tsx @@ -38,7 +38,7 @@ export function BinaryFileEditor({ {filePath != null && mimeType !== contentType && !ignoreContentType.value && ( - +
Set Content-Type header
{mimeType} for current request? diff --git a/apps/yaak-client/components/CloneGitRepositoryDialog.tsx b/apps/yaak-client/components/CloneGitRepositoryDialog.tsx index ccf14580..b7048a5f 100644 --- a/apps/yaak-client/components/CloneGitRepositoryDialog.tsx +++ b/apps/yaak-client/components/CloneGitRepositoryDialog.tsx @@ -108,7 +108,7 @@ export function CloneGitRepositoryDialog({ hide }: Props) { rightSlot={ void }) { name="command" label="Command" placeholder="Search or type a command" - className="font-sans !text-base" + className="font-sans text-base!" defaultValue={command} onChange={handleSetCommand} onKeyDownCapture={handleKeyDown} @@ -448,7 +448,7 @@ export function CommandPaletteDialog({ onClose }: { onClose: () => void }) {
{filteredGroups.map((g) => (
- + {g.label} {g.items.map((v) => ( @@ -491,7 +491,7 @@ function CommandPaletteItem({ color="custom" justify="start" className={classNames( - "w-full h-sm flex items-center rounded px-1.5", + "w-full h-sm flex items-center rounded-sm px-1.5", "hover:text-text", active && "bg-surface-highlight", !active && "text-text-subtle", diff --git a/apps/yaak-client/components/CookieDialog.tsx b/apps/yaak-client/components/CookieDialog.tsx index a4dc7701..31c90913 100644 --- a/apps/yaak-client/components/CookieDialog.tsx +++ b/apps/yaak-client/components/CookieDialog.tsx @@ -155,7 +155,7 @@ export const CookieDialog = ({ cookieJarId }: Props) => { rightSlot={ filter.length > 0 && ( { @@ -239,7 +239,7 @@ export const CookieDialog = ({ cookieJarId }: Props) => { {c.name} - + {c.value} {cookieDomain(c)} @@ -547,7 +547,7 @@ function CookieEditor({ } function CookieKeyValueRow({ labelClassName, ...props }: ComponentProps) { - return ; + return ; } function CookieTextInput({ @@ -589,7 +589,7 @@ function CookieTextarea({ onChange, value }: { onChange: (value: string) => void