diff --git a/src/component-library/outputtailwind.css b/src/component-library/outputtailwind.css index c1927aa80..493a87f7f 100644 --- a/src/component-library/outputtailwind.css +++ b/src/component-library/outputtailwind.css @@ -3270,6 +3270,11 @@ html { color: rgb(167 139 250 / var(--tw-text-opacity)); } +.dark .hover\:dark\:text-brand-500:hover { + --tw-text-opacity: 1; + color: rgb(139 92 246 / var(--tw-text-opacity)); +} + .dark .dark\:focus\:border-brand-500:focus { --tw-border-opacity: 1; border-color: rgb(139 92 246 / var(--tw-border-opacity)); diff --git a/src/component-library/ui/hint-link.tsx b/src/component-library/ui/hint-link.tsx index 0986559cd..3172efde4 100644 --- a/src/component-library/ui/hint-link.tsx +++ b/src/component-library/ui/hint-link.tsx @@ -6,7 +6,7 @@ export const HintLink = ({ className, href, ...props }: { className?: string; hr href={href} target="_blank" rel="noreferrer" - className={cn('text-neutral-500 dark:text-neutral-400 font-semibold hover:text-brand-500', className)} + className={cn('text-neutral-500 dark:text-neutral-400 font-semibold hover:text-brand-500 hover:dark:text-brand-500', className)} {...props} > ? diff --git a/src/component-library/ui/skeleton.tsx b/src/component-library/ui/skeleton.tsx index 18328c7c6..04a8489fc 100644 --- a/src/component-library/ui/skeleton.tsx +++ b/src/component-library/ui/skeleton.tsx @@ -1,7 +1,7 @@ import { cn } from '@/component-library/utils'; function Skeleton({ className, ...props }: React.HTMLAttributes) { - return
; + return
; } export { Skeleton };