diff --git a/feature/survey-check/src/main/java/com/wap/wapp/feature/survey/check/detail/SubjectiveQuestionCard.kt b/feature/survey-check/src/main/java/com/wap/wapp/feature/survey/check/detail/SubjectiveQuestionCard.kt index 586c7e71..0303056a 100644 --- a/feature/survey-check/src/main/java/com/wap/wapp/feature/survey/check/detail/SubjectiveQuestionCard.kt +++ b/feature/survey-check/src/main/java/com/wap/wapp/feature/survey/check/detail/SubjectiveQuestionCard.kt @@ -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), + ) } } }