Skip to content

Commit

Permalink
fix: remove outline on focus visible
Browse files Browse the repository at this point in the history
  • Loading branch information
dohaki committed Feb 8, 2024
1 parent ece7a94 commit b1855a5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/_components/header-nav/flyout-menu.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ type Props = {
export function FlyoutMenu({ buttonLabel, menuItems, className }: Props) {
return (
<Popover className={twMerge("relative", className)}>
<Popover.Button className="flex cursor-pointer items-center justify-center gap-1 text-md text-light-300">
<Popover.Button className="flex cursor-pointer items-center justify-center gap-1 text-md text-light-300 focus-visible:outline-none">
{buttonLabel}
<ChevronDownIcon />
</Popover.Button>
Expand Down

0 comments on commit b1855a5

Please sign in to comment.