Fix textarea dark theme (#3712)

This commit is contained in:
Hariom Balhara
2022-08-05 07:32:21 +00:00
committed by GitHub
parent 414233961c
commit ee767a3e41
@@ -33,7 +33,7 @@ const TextAreaWidget = (props: TextWidgetProps) => {
disabled={readonly}
onChange={onChange}
maxLength={maxLength}
className="flex flex-grow border-gray-300 text-sm"
className="flex flex-grow border-gray-300 text-sm dark:border-gray-900 dark:bg-gray-700 dark:text-white dark:selection:bg-green-500 disabled:dark:text-gray-500"
{...customProps}
{...remainingProps}
/>