Skip to content

Commit 2280834

Browse files
committed
fix(fileinput): fix description contrast in dark mode
1 parent 226eb70 commit 2280834

File tree

1 file changed

+4
-1
lines changed
  • packages/utah-design-system/src/components

1 file changed

+4
-1
lines changed

packages/utah-design-system/src/components/Field.tsx

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,10 @@ export function Description(props: TextProps) {
3535
<Text
3636
{...props}
3737
slot="description"
38-
className={twMerge('text-sm text-gray-600', props.className)}
38+
className={twMerge(
39+
'text-sm text-gray-600 dark:text-zinc-400',
40+
props.className,
41+
)}
3942
/>
4043
);
4144
}

0 commit comments

Comments
 (0)