atproto explorer

fix search label spacing

+23 -10
+5 -1
src/components/navbar.tsx
··· 63 63 </Tooltip> 64 64 <Show when={pds()}> 65 65 <Show when={props.params.repo}> 66 - <A end href={pds()!} inactiveClass="text-blue-400 w-full hover:underline active:underline"> 66 + <A 67 + end 68 + href={pds()!} 69 + inactiveClass="text-blue-400 w-full hover:underline active:underline" 70 + > 67 71 {pds()} 68 72 </A> 69 73 </Show>
+3 -5
src/components/search.tsx
··· 53 53 id="uriForm" 54 54 onsubmit={(e) => e.preventDefault()} 55 55 > 56 - <div class="w-full"> 57 - <label for="input" class="ml-0.5 text-sm"> 58 - PDS URL, AT URI, or handle 59 - </label> 60 - </div> 56 + <label for="input" class="ml-0.5 text-sm"> 57 + PDS URL, AT URI, or handle 58 + </label> 61 59 <div class="flex w-full items-center gap-2"> 62 60 <div class="dark:bg-dark-100 dark:shadow-dark-900/80 flex grow items-center gap-2 rounded-lg bg-white px-2 py-1 shadow-sm focus-within:outline-[1.5px] focus-within:outline-neutral-900 dark:focus-within:outline-neutral-200"> 63 61 <input
+6 -2
src/layout.tsx
··· 31 31 <Meta name="robots" content="noindex, nofollow" /> 32 32 </Show> 33 33 </MetaProvider> 34 - <div class="mb-2 flex w-[22rem] items-center sm:w-[24rem]"> 34 + <div class="mb-3 flex w-[22rem] items-center sm:w-[24rem]"> 35 35 <div class="flex basis-1/3 gap-x-2"> 36 36 <Tooltip text="Relay"> 37 37 <A href="/jetstream" class="iconify lucide--radio-tower text-xl"></A> ··· 39 39 <AccountManager /> 40 40 </div> 41 41 <div class="flex basis-1/3 items-center justify-center text-center"> 42 - <A href="/" style='font-feature-settings: "cv05"' class="font-bold hover:underline active:underline"> 42 + <A 43 + href="/" 44 + style='font-feature-settings: "cv05"' 45 + class="font-bold hover:underline active:underline" 46 + > 43 47 PDSls 44 48 </A> 45 49 </div>
+9 -2
src/views/home.tsx
··· 12 12 <div class="iconify lucide--search" /> 13 13 <span> 14 14 Browse the public data on{" "} 15 - <a class="text-blue-400 hover:underline active:underline" href="https://atproto.com" target="_blank"> 15 + <a 16 + class="text-blue-400 hover:underline active:underline" 17 + href="https://atproto.com" 18 + target="_blank" 19 + > 16 20 atproto 17 21 </a> 18 22 . ··· 60 64 </div> 61 65 <div class="flex items-center gap-1"> 62 66 <div class="iconify lucide--at-sign" /> 63 - <A href="/at://did:plc:vwzwgnygau7ed7b7wt5ux7y2" class="text-blue-400 hover:underline active:underline"> 67 + <A 68 + href="/at://did:plc:vwzwgnygau7ed7b7wt5ux7y2" 69 + class="text-blue-400 hover:underline active:underline" 70 + > 64 71 at://did:plc:vwzwgnygau7ed7b7wt5ux7y2 65 72 </A> 66 73 </div>