Skip to content

Commit

Permalink
fix(surveys): multiple choice label color fix (#18497)
Browse files Browse the repository at this point in the history
  • Loading branch information
liyiy authored Nov 8, 2023
1 parent 74d6351 commit 5958102
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions frontend/src/scenes/surveys/SurveyAppearance.scss
Original file line number Diff line number Diff line change
Expand Up @@ -158,6 +158,7 @@
.multiple-choice-options {
margin-top: 13px;
font-size: 14px;
color: black;
}
.multiple-choice-options .choice-option {
display: flex;
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/scenes/surveys/SurveyAppearance.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -604,7 +604,7 @@ export function SurveyMultipleChoiceAppearance({
name="choice"
value={choice}
/>
<label style={{ color: textColor }}>{choice}</label>
<label>{choice}</label>
<span className="choice-check">{check}</span>
</div>
))}
Expand Down

0 comments on commit 5958102

Please sign in to comment.