Skip to content

Commit d143bf4

Browse files
joetannenbaumWendellAdrielOliverSpeak
authored
Fix tooltip trigger for React and vue type testing errors (#264)
Co-authored-by: WendellAdriel <11641518+WendellAdriel@users.noreply.github.com> Co-authored-by: OliverSpeak <OliverSpeak@users.noreply.github.com>
1 parent 58a2590 commit d143bf4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

resources/js/components/app-header.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@ export function AppHeader({ breadcrumbs = [] }: Props) {
185185
>
186186
<Search className="!size-5 opacity-80 group-hover:opacity-100" />
187187
</Button>
188-
<div className="hidden lg:flex">
188+
<div className="ml-1 hidden gap-1 lg:flex">
189189
{rightNavItems.map((item) => (
190190
<TooltipProvider
191191
key={item.title}
@@ -197,7 +197,7 @@ export function AppHeader({ breadcrumbs = [] }: Props) {
197197
href={toUrl(item.href)}
198198
target="_blank"
199199
rel="noopener noreferrer"
200-
className="group ml-1 inline-flex h-9 w-9 items-center justify-center rounded-md bg-transparent p-0 text-sm font-medium text-accent-foreground ring-offset-background transition-colors hover:bg-accent hover:text-accent-foreground focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 focus-visible:outline-none disabled:pointer-events-none disabled:opacity-50"
200+
className="group inline-flex h-9 w-9 items-center justify-center rounded-md bg-transparent p-0 text-sm font-medium text-accent-foreground ring-offset-background transition-colors hover:bg-accent hover:text-accent-foreground focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 focus-visible:outline-none disabled:pointer-events-none disabled:opacity-50"
201201
>
202202
<span className="sr-only">
203203
{item.title}

0 commit comments

Comments
 (0)