atmosphere explorer pds.ls
tool typescript atproto
434
fork

Configure Feed

Select the types of activity you want to include in your feed.

even out width of cursor inputs

Juliet bff0e947 f6cd87ef

+2 -2
+2 -2
src/views/stream/index.tsx
··· 416 416 name={field.name} 417 417 placeholder={field.placeholder} 418 418 value={(searchParams[field.searchParam] as string) ?? ""} 419 - class="grow" 419 + class="min-w-0 grow basis-0" 420 420 onInput={() => { 421 421 if (field.datetimePicker && pickerRef) { 422 422 pickerRef.value = microsToDatetimeLocal(inputRef.value); ··· 432 432 (searchParams[field.searchParam] as string) ?? 433 433 (Date.now() * 1000).toString(), 434 434 )} 435 - class="dark:bg-dark-100 rounded-md bg-white px-2 py-1 text-sm outline-1 outline-neutral-200 select-none focus:outline-neutral-400 dark:scheme-dark dark:outline-neutral-600 dark:focus:outline-neutral-400" 435 + class="dark:bg-dark-100 min-w-0 grow basis-0 rounded-md bg-white px-2 py-1 text-sm outline-1 outline-neutral-200 select-none focus:outline-neutral-400 dark:scheme-dark dark:outline-neutral-600 dark:focus:outline-neutral-400" 436 436 onInput={(e) => { 437 437 const micros = datetimeLocalToMicros(e.currentTarget.value); 438 438 inputRef.value = micros;