We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9a5ec98 commit eea45f4Copy full SHA for eea45f4
resources/js/components/text-link.tsx
@@ -7,7 +7,10 @@ type LinkProps = ComponentProps<typeof Link>;
7
export default function TextLink({ className = '', children, ...props }: LinkProps) {
8
return (
9
<Link
10
- className={cn('underline decoration-neutral-400 underline-offset-2 duration-300 ease-out hover:decoration-neutral-700', className)}
+ className={cn(
11
+ 'text-foreground underline decoration-neutral-300 underline-offset-4 transition-colors duration-300 ease-out hover:decoration-current! dark:decoration-neutral-500',
12
+ className,
13
+ )}
14
{...props}
15
>
16
{children}
0 commit comments