tangled
alpha
login
or
join now
vielle.dev
/
pdsls
forked from
pds.ls/pdsls
0
fork
atom
atproto explorer
0
fork
atom
overview
issues
pulls
pipelines
adjust record and label view width
handle.invalid
6 months ago
ef3746ac
b72226d7
+2
-2
2 changed files
expand all
collapse all
unified
split
src
views
labels.tsx
record.tsx
+1
-1
src/views/labels.tsx
···
116
116
</div>
117
117
</div>
118
118
<Show when={labels().length}>
119
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
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
207
-
<div class="w-full font-mono text-xs wrap-anywhere whitespace-pre-wrap sm:text-sm">
207
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>