tangled
alpha
login
or
join now
ansxor.ca
/
pdsls
forked from
pds.ls/pdsls
0
fork
atom
atmosphere explorer
0
fork
atom
overview
issues
pulls
pipelines
tweak padding
handle.invalid
1 month ago
8bcc6313
a41e55ae
verified
This commit was signed with the committer's
known signature
.
handle.invalid
SSH Key Fingerprint:
SHA256:mBrT4x0JdzLpbVR95g1hjI1aaErfC02kmLRkPXwsYCk=
+5
-5
3 changed files
expand all
collapse all
unified
split
src
views
blob.tsx
labels.tsx
pds.tsx
+1
-1
src/views/blob.tsx
···
54
54
<Button
55
55
onClick={() => refetch()}
56
56
disabled={response.loading}
57
57
-
classList={{ "w-20 h-[30px] justify-center": true }}
57
57
+
classList={{ "w-20 h-7.5 justify-center": true }}
58
58
>
59
59
<Show
60
60
when={!response.loading}
+1
-1
src/views/labels.tsx
···
277
277
<Button
278
278
onClick={handleLoadMore}
279
279
disabled={loading()}
280
280
-
classList={{ "w-20 h-[30px] justify-center": true }}
280
280
+
classList={{ "w-20 h-7.5 justify-center": true }}
281
281
>
282
282
<Show
283
283
when={!loading()}
+3
-3
src/views/pds.tsx
···
55
55
const [expanded, setExpanded] = createSignal(false);
56
56
57
57
return (
58
58
-
<div class="flex flex-col gap-0.5">
58
58
+
<div class="flex flex-col gap-1">
59
59
<div class="flex items-start">
60
60
<button
61
61
type="button"
···
89
89
</Show>
90
90
</div>
91
91
<Show when={expanded()}>
92
92
-
<div class="mb-2 ml-[30px] flex flex-col gap-1 font-mono text-xs text-neutral-500 dark:text-neutral-400">
92
92
+
<div class="mb-2 ml-7.5 flex flex-col gap-1 font-mono text-xs text-neutral-500 dark:text-neutral-400">
93
93
<Show when={repo.head}>
94
94
<span class="truncate">{repo.head}</span>
95
95
</Show>
···
240
240
<Button
241
241
onClick={() => refetch()}
242
242
disabled={response.loading}
243
243
-
classList={{ "w-20 h-[30px] justify-center": true }}
243
243
+
classList={{ "w-20 h-7.5 justify-center": true }}
244
244
>
245
245
<Show
246
246
when={!response.loading}