Skip to content

Commit 27482c7

Browse files
style(footer): improve link hover and focus states
1 parent b331820 commit 27482c7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

apps/web/src/components/footer.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -247,7 +247,7 @@ function ResourcesLinks() {
247247
<li>
248248
<Link
249249
to={currentUseCase.to}
250-
className="group text-sm text-neutral-600 hover:text-stone-600 transition-colors no-underline hover:underline hover:decoration-dotted"
250+
className="group text-sm text-neutral-600 hover:text-stone-600 transition-colors no-underline group-hover:underline group-focus:underline decoration-dotted"
251251
aria-label={`Hyprnote for ${currentUseCase.label}`}
252252
onMouseEnter={() => {
253253
setUseCaseIndex((prev) =>
@@ -270,7 +270,7 @@ function ResourcesLinks() {
270270
<Link
271271
to="/vs/$slug"
272272
params={{ slug: currentVs.slug }}
273-
className="group text-sm text-neutral-600 hover:text-stone-600 transition-colors no-underline hover:underline hover:decoration-dotted"
273+
className="group text-sm text-neutral-600 hover:text-stone-600 transition-colors no-underline group-hover:underline group-focus:underline decoration-dotted"
274274
aria-label={`Versus ${currentVs.name}`}
275275
onMouseEnter={() => {
276276
setVsIndex((prev) => getNextRandomIndex(vsList.length, prev));

0 commit comments

Comments
 (0)