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
disable handle favicon on mobile
handle.invalid
1 month ago
fdbeb2be
76f702d2
verified
This commit was signed with the committer's
known signature
.
handle.invalid
SSH Key Fingerprint:
SHA256:mBrT4x0JdzLpbVR95g1hjI1aaErfC02kmLRkPXwsYCk=
+9
-3
1 changed file
expand all
collapse all
unified
split
src
components
navbar.tsx
+9
-3
src/components/navbar.tsx
···
108
108
<div
109
109
class="group relative flex items-center justify-between gap-1 rounded-md border-[0.5px] border-transparent bg-transparent px-2 transition-all duration-200 hover:border-neutral-300 hover:bg-neutral-50/40 dark:hover:border-neutral-600 dark:hover:bg-neutral-800/40"
110
110
onMouseEnter={() => {
111
111
-
setRepoHovered(true);
112
112
-
setHasHoveredRepo(true);
111
111
+
if (!isTouchDevice) {
112
112
+
setRepoHovered(true);
113
113
+
setHasHoveredRepo(true);
114
114
+
}
113
115
}}
114
114
-
onMouseLeave={() => setRepoHovered(false)}
116
116
+
onMouseLeave={() => {
117
117
+
if (!isTouchDevice) {
118
118
+
setRepoHovered(false);
119
119
+
}
120
120
+
}}
115
121
>
116
122
<div class="flex min-w-0 basis-full items-center gap-2">
117
123
<Tooltip text="Repository">