atproto explorer

adjust record and label view width

+2 -2
+1 -1
src/views/labels.tsx
··· 116 116 </div> 117 117 </div> 118 118 <Show when={labels().length}> 119 - <div class="flex min-w-[22rem] flex-col gap-2 divide-y-[0.5px] divide-neutral-400 text-sm wrap-anywhere whitespace-pre-wrap sm:min-w-[24rem] dark:divide-neutral-600"> 119 + <div class="flex w-[22rem] flex-col gap-2 divide-y-[0.5px] divide-neutral-400 text-sm wrap-anywhere whitespace-pre-wrap sm:min-w-[24rem] dark:divide-neutral-600"> 120 120 <For each={filterLabels()}> 121 121 {(label) => ( 122 122 <div class="flex items-center justify-between gap-2 pb-2">
+1 -1
src/views/record.tsx
··· 204 204 </div> 205 205 </div> 206 206 <Show when={!showBacklinks()}> 207 - <div class="w-full font-mono text-xs wrap-anywhere whitespace-pre-wrap sm:text-sm"> 207 + <div class="w-[22rem] font-mono text-xs wrap-anywhere whitespace-pre-wrap sm:w-full sm:text-sm"> 208 208 <JSONValue data={record()?.value as any} repo={record()!.uri.split("/")[2]} /> 209 209 </div> 210 210 </Show>