Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions apps/web/src/components/footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,7 @@ function ResourcesLinks() {
<li>
<Link
to={currentUseCase.to}
className="group text-sm text-neutral-600 hover:text-stone-600 transition-colors no-underline hover:underline hover:decoration-dotted"
className="group text-sm text-neutral-600 hover:text-stone-600 transition-colors no-underline group-hover:underline group-focus:underline decoration-dotted"
aria-label={`Hyprnote for ${currentUseCase.label}`}
onMouseEnter={() => {
setUseCaseIndex((prev) =>
Expand All @@ -270,7 +270,7 @@ function ResourcesLinks() {
<Link
to="/vs/$slug"
params={{ slug: currentVs.slug }}
className="group text-sm text-neutral-600 hover:text-stone-600 transition-colors no-underline hover:underline hover:decoration-dotted"
className="group text-sm text-neutral-600 hover:text-stone-600 transition-colors no-underline group-hover:underline group-focus:underline decoration-dotted"
aria-label={`Versus ${currentVs.name}`}
onMouseEnter={() => {
setVsIndex((prev) => getNextRandomIndex(vsList.length, prev));
Expand Down