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
fix search label spacing
handle.invalid
6 months ago
a00dc33c
ef3746ac
+23
-10
4 changed files
expand all
collapse all
unified
split
src
components
navbar.tsx
search.tsx
layout.tsx
views
home.tsx
+5
-1
src/components/navbar.tsx
···
63
63
</Tooltip>
64
64
<Show when={pds()}>
65
65
<Show when={props.params.repo}>
66
66
-
<A end href={pds()!} inactiveClass="text-blue-400 w-full hover:underline active:underline">
66
66
+
<A
67
67
+
end
68
68
+
href={pds()!}
69
69
+
inactiveClass="text-blue-400 w-full hover:underline active:underline"
70
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
56
-
<div class="w-full">
57
57
-
<label for="input" class="ml-0.5 text-sm">
58
58
-
PDS URL, AT URI, or handle
59
59
-
</label>
60
60
-
</div>
56
56
+
<label for="input" class="ml-0.5 text-sm">
57
57
+
PDS URL, AT URI, or handle
58
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
34
-
<div class="mb-2 flex w-[22rem] items-center sm:w-[24rem]">
34
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
42
-
<A href="/" style='font-feature-settings: "cv05"' class="font-bold hover:underline active:underline">
42
42
+
<A
43
43
+
href="/"
44
44
+
style='font-feature-settings: "cv05"'
45
45
+
class="font-bold hover:underline active:underline"
46
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
15
-
<a class="text-blue-400 hover:underline active:underline" href="https://atproto.com" target="_blank">
15
15
+
<a
16
16
+
class="text-blue-400 hover:underline active:underline"
17
17
+
href="https://atproto.com"
18
18
+
target="_blank"
19
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
63
-
<A href="/at://did:plc:vwzwgnygau7ed7b7wt5ux7y2" class="text-blue-400 hover:underline active:underline">
67
67
+
<A
68
68
+
href="/at://did:plc:vwzwgnygau7ed7b7wt5ux7y2"
69
69
+
class="text-blue-400 hover:underline active:underline"
70
70
+
>
64
71
at://did:plc:vwzwgnygau7ed7b7wt5ux7y2
65
72
</A>
66
73
</div>