tangled
alpha
login
or
join now
retr0.id
/
pdsls
forked from
pds.ls/pdsls
1
fork
atom
atproto explorer
1
fork
atom
overview
issues
pulls
pipelines
fix navbar icon sizes
juli.ee
4 months ago
82c0f4b1
0d3ad12b
verified
This commit was signed with the committer's
known signature
.
juli.ee
SSH Key Fingerprint:
SHA256:mBrT4x0JdzLpbVR95g1hjI1aaErfC02kmLRkPXwsYCk=
+2
-2
1 changed file
expand all
collapse all
unified
split
src
components
navbar.tsx
+2
-2
src/components/navbar.tsx
···
45
45
<MenuProvider>
46
46
<DropdownMenu
47
47
icon="lucide--copy"
48
48
-
buttonClass="rounded p-1 text-base transition-all duration-200 hover:bg-neutral-200/70 active:bg-neutral-300/70 dark:hover:bg-neutral-700/70 dark:active:bg-neutral-600/70"
48
48
+
buttonClass="rounded p-0.5 sm:p-1 text-base transition-all duration-200 hover:bg-neutral-200/70 active:bg-neutral-300/70 dark:hover:bg-neutral-700/70 dark:active:bg-neutral-600/70"
49
49
menuClass="top-7 p-2 text-xs"
50
50
>
51
51
<Show when={pds()}>
···
81
81
</div>
82
82
<Tooltip text={showHandle() ? "Show DID" : "Show handle"}>
83
83
<button
84
84
-
class="flex items-center rounded p-1 text-base transition-all duration-200 hover:bg-neutral-200/70 active:bg-neutral-300/70 dark:hover:bg-neutral-700/70 dark:active:bg-neutral-600/70"
84
84
+
class="flex items-center rounded p-0.5 text-base transition-all duration-200 hover:bg-neutral-200/70 active:bg-neutral-300/70 sm:p-1 dark:hover:bg-neutral-700/70 dark:active:bg-neutral-600/70"
85
85
onclick={() => {
86
86
localStorage.showHandle = !showHandle();
87
87
setShowHandle(!showHandle());