Skip to content

Commit

Permalink
docs: use tokens instead of hex values (#3984)
Browse files Browse the repository at this point in the history
  • Loading branch information
sarahgm authored Jul 4, 2024
1 parent 4c39486 commit e8721e0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/content/recipes/topnavigation.demo.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ const NavItem = ({ children, href, active }: NavItemsProps) => {
href={href}
target="_blank"
className={cn(
'pb-4 hover:border-b-8 hover:border-[#78716c] ',
active && 'border-b-8 border-[#fa8005]'
'hover:border-border-base-hover pb-4 hover:border-b-8',
active && 'border-border-selected border-b-8'
)}
rel="noreferrer"
>
Expand Down

0 comments on commit e8721e0

Please sign in to comment.