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
5 changes: 4 additions & 1 deletion src/components/header/desktop-layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import { Logo } from "./logo"

export const DesktopLayout = () => {
const removeDefaultHoverEffectClass = "hover:bg-transparent focus:bg-transparent bg-transparent!"
const customHoverEffectClass = "hover:underline focus:underline decoration-1 decoration-blue-secondary "
const customHoverEffectClass = "hover:underline focus-visible:underline decoration-1 decoration-blue-secondary "

return (
<div className="fixed inset-x-6 top-10 z-20 mx-auto box-border max-w-261.25 rounded-full">
Expand All @@ -44,6 +44,9 @@ export const DesktopLayout = () => {
customHoverEffectClass
)}
hideChevron
onPointerEnter={(e) => e.preventDefault()}
onPointerLeave={(e) => e.preventDefault()}
onPointerMove={(e) => e.preventDefault()}
>
<div className="flex flex-col gap-1">
<span className="typo-body-medium font-red-hat text-text-primary">{item.title}</span>
Expand Down
Loading