+8
-4
src/components/navbar.tsx
+8
-4
src/components/navbar.tsx
···
37
37
</Tooltip>
38
38
<Show when={pds()}>
39
39
<Show when={props.params.repo}>
40
40
-
<A end href={pds()!} inactiveClass="w-full hover:underline active:underline">
40
40
+
<A
41
41
+
end
42
42
+
href={pds()!}
43
43
+
inactiveClass="text-blue-400 w-full hover:underline active:underline"
44
44
+
>
41
45
{pds()}
42
46
</A>
43
47
</Show>
···
79
83
<A
80
84
end
81
85
href={`/at://${props.params.repo}`}
82
82
-
inactiveClass="hover:underline active:underline w-full"
86
86
+
inactiveClass="text-blue-400 hover:underline active:underline w-full"
83
87
>
84
88
{showHandle() ? handle() : props.params.repo}
85
89
</A>
···
111
115
<A
112
116
end
113
117
href={`/at://${props.params.repo}/labels`}
114
114
-
inactiveClass="grow hover:underline active:underline"
118
118
+
inactiveClass="text-blue-400 grow hover:underline active:underline"
115
119
>
116
120
labels
117
121
</A>
···
126
130
<A
127
131
end
128
132
href={`/at://${props.params.repo}/${props.params.collection}`}
129
129
-
inactiveClass="w-full hover:underline active:underline"
133
133
+
inactiveClass="text-blue-400 w-full hover:underline active:underline"
130
134
>
131
135
{props.params.collection}
132
136
</A>