Skip to content

Commit

Permalink
Merge pull request #183 from OneBusAway/fix/dark-mode-issue-label-que…
Browse files Browse the repository at this point in the history
…stion

Add dark mode support for survey question of type label
  • Loading branch information
aaronbrethorst authored Feb 19, 2025
2 parents 7ee5ced + 3b576ee commit d36806e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/surveys/SurveyQuestion.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@
{/each}
</div>
{:else if question.content.type === 'label'}
<p class={`${sizeClasses.label} mt-4 font-bold text-black`}>
<p class={`${sizeClasses.label} mt-4 font-bold text-black dark:text-white`}>
{question.content.label_text}
</p>
{:else if question.content.type === 'external_survey'}
Expand Down

0 comments on commit d36806e

Please sign in to comment.