diff --git a/frontend/src/components/RecentQueries.jsx b/frontend/src/components/RecentQueries.jsx index 5817cc15..0b7732e5 100644 --- a/frontend/src/components/RecentQueries.jsx +++ b/frontend/src/components/RecentQueries.jsx @@ -70,19 +70,21 @@ export default function RecentQueries({ entries, onSelect, onClear, label = 'Rec )} + {/* min-w-11 keeps touch-expand's 44px box inside the chip, so a + one-character query can't reach into its neighbour. */}
{entries.map(q => ( diff --git a/frontend/src/components/fields/custom/ArrayObjectField.jsx b/frontend/src/components/fields/custom/ArrayObjectField.jsx index 4a7fb96a..861defb0 100755 --- a/frontend/src/components/fields/custom/ArrayObjectField.jsx +++ b/frontend/src/components/fields/custom/ArrayObjectField.jsx @@ -462,7 +462,7 @@ export const ArrayObjectField = ({ })); const lbl = 'font-mono text-[10px] tracking-[0.8px] text-fg-subtle'; const ctrl = - 'h-9 px-2.5 rounded-md bg-surface-inset border border-border text-fg text-sm outline-none focus:border-primary w-full'; + 'h-11 px-2.5 rounded-md bg-surface-inset border border-border text-fg text-sm outline-none focus:border-primary w-full'; return (
set('app_instance', e.target.value)} disabled={disabled} - className="h-9 px-2.5 rounded-md bg-surface border border-border text-fg text-sm font-semibold outline-none focus:border-primary min-w-[160px] flex-1" + className="h-11 px-2.5 rounded-md bg-surface border border-border text-fg text-sm font-semibold outline-none focus:border-primary min-w-[160px] flex-1" > {instanceOptions.map(o => ( diff --git a/frontend/src/components/fields/custom/DirPickerField.jsx b/frontend/src/components/fields/custom/DirPickerField.jsx index 4ff81bc7..1e22558b 100644 --- a/frontend/src/components/fields/custom/DirPickerField.jsx +++ b/frontend/src/components/fields/custom/DirPickerField.jsx @@ -167,7 +167,7 @@ export const DirPickerField = React.memo(({ field, value, onChange, disabled = f value={activeRoot || ''} onChange={handleRootChange} disabled={disabled || loading} - className="flex-1 px-2 py-1 text-xs bg-input border border-border rounded text-fg focus:border-primary focus:outline-none" + className="flex-1 h-11 px-2 text-xs bg-input border border-border rounded text-fg focus:border-primary focus:outline-none" > {roots.map(r => (