Chris Tate пре 5 месеци
родитељ
комит
5eaca7151f
1 измењених фајлова са 1 додато и 1 уклоњено
  1. 1 1
      apps/web/components/demo/link.tsx

+ 1 - 1
apps/web/components/demo/link.tsx

@@ -9,7 +9,7 @@ export function Link({ element }: ComponentRenderProps) {
 
   return (
     <span
-      className={`text-xs text-blue-500 underline cursor-pointer ${baseClass} ${customClass}`}
+      className={`text-xs text-muted-foreground hover:text-foreground cursor-pointer transition-colors underline-offset-2 hover:underline ${baseClass} ${customClass}`}
     >
       {props.label as string}
     </span>