Skip to content

Commit

Permalink
[FEATURE] #130 : 사용자 응답 색상 노란색으로 하이라이팅 적용
Browse files Browse the repository at this point in the history
  • Loading branch information
tgyuuAn committed Feb 18, 2024
1 parent 034f0b0 commit 13bf640
Showing 1 changed file with 7 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -34,15 +34,20 @@ internal fun SubjectiveQuestionCard(surveyAnswer: SurveyAnswer) {
color = WappTheme.colors.white,
textAlign = TextAlign.Start,
)

Spacer(modifier = Modifier.height(16.dp))

Text(
text = surveyAnswer.questionAnswer,
style = WappTheme.typography.contentRegular,
color = WappTheme.colors.white,
color = WappTheme.colors.yellow34,
textAlign = TextAlign.Start,
)
Divider()

Divider(
color = WappTheme.colors.gray82,
modifier = Modifier.padding(top = 5.dp),
)
}
}
}

0 comments on commit 13bf640

Please sign in to comment.