Skip to content

Commit 356e4e0

Browse files
committed
fix: fix font color (trigger deployment teehee)
1 parent 3c1f3e8 commit 356e4e0

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

  • frontend-nextjs/src/app/[lang]/dashboard/organisation/[orgId]/campaigns/[campaignId]/questions

frontend-nextjs/src/app/[lang]/dashboard/organisation/[orgId]/campaigns/[campaignId]/questions/campaign-questions.tsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -378,7 +378,7 @@ function MultiOptionQuestionCard({ question, currentRole, possibleRole, handleQu
378378
return (
379379
<div className="flex flex-col p-2 border rounded-md gap-2 w">
380380
<div className="flex flex-col gap-1">
381-
<label className="text-sm text-muted-foreground">{dict.common.title}</label>
381+
<label className="text-sm text-foreground">{dict.common.title}</label>
382382
<div className="flex justify-between">
383383
<Input className="max-w-[500px]" value={title} onChange={async (e) => await updateTitle(e.target.value)} />
384384
<div className="flex items-center gap-1">
@@ -424,7 +424,7 @@ function MultiOptionQuestionCard({ question, currentRole, possibleRole, handleQu
424424
</Select>
425425
</div>
426426
<div className="flex flex-col gap-1">
427-
<label className="text-sm text-muted-foreground">{dict.common.description}</label>
427+
<label className="text-sm text-foreground">{dict.common.description}</label>
428428
<Textarea
429429
className="max-w-[500px] min-h-[80px]"
430430
placeholder="Optional info for applicants"
@@ -538,7 +538,7 @@ function ShortAnswerQuestionCard({ question, currentRole, possibleRole, handleQu
538538
return (
539539
<div className="flex flex-col justify-between p-2 border rounded-md gap-2 min-h-[120px]">
540540
<div className="flex flex-col gap-1">
541-
<label className="text-sm text-muted-foreground">{dict.common.title}</label>
541+
<label className="text-sm text-foreground">{dict.common.title}</label>
542542
<div className="flex justify-between">
543543
<Input className="max-w-[500px]" value={title} onChange={async (e) => await updateTitle(e.target.value)} />
544544
<div className="flex items-center gap-1">
@@ -571,7 +571,7 @@ function ShortAnswerQuestionCard({ question, currentRole, possibleRole, handleQu
571571
</div>
572572
</div>
573573
<div className="flex flex-col gap-1 px-2">
574-
<label className="text-sm text-muted-foreground">{dict.common.description}</label>
574+
<label className="text-sm text-foreground">{dict.common.description}</label>
575575
<Textarea
576576
className="max-w-[500px] min-h-[80px]"
577577
placeholder="Optional info for applicants"

0 commit comments

Comments
 (0)