🖌️ style: Use correct text colour for answer textarea in dark mode (#14791)

This commit is contained in:
Lizzy 2026-08-14 00:37:13 +01:00 committed by GitHub
parent d920328bfa
commit 5bd745783c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View file

@ -189,7 +189,7 @@ function AskUserQuestionSingle({
minRows={2}
maxRows={12}
placeholder={otherLabel ?? localize('com_ui_your_answer')}
className="w-full resize-none rounded-md border border-border-light bg-surface-primary p-2 text-sm"
className="w-full resize-none rounded-md border border-border-light bg-surface-primary p-2 text-sm text-text-primary"
aria-label={localize('com_ui_your_answer')}
/>

View file

@ -96,7 +96,7 @@ export default function AskUserQuestions({
minRows={1}
maxRows={6}
placeholder={otherLabel ?? localize('com_ui_your_answer')}
className="mt-2 w-full resize-none rounded-md border border-border-light bg-surface-primary p-2 text-sm"
className="mt-2 w-full resize-none rounded-md border border-border-light bg-surface-primary p-2 text-sm text-text-primary"
aria-label={`${question.question} ${localize('com_ui_your_answer')}`}
/>
</fieldset>