From 13bf640262584b0b2cee755de6a1bbb9786eb306 Mon Sep 17 00:00:00 2001 From: tgyuu-An Date: Sun, 18 Feb 2024 16:46:08 +0900 Subject: [PATCH] =?UTF-8?q?[FEATURE]=20#130=20:=20=EC=82=AC=EC=9A=A9?= =?UTF-8?q?=EC=9E=90=20=EC=9D=91=EB=8B=B5=20=EC=83=89=EC=83=81=20=EB=85=B8?= =?UTF-8?q?=EB=9E=80=EC=83=89=EC=9C=BC=EB=A1=9C=20=ED=95=98=EC=9D=B4?= =?UTF-8?q?=EB=9D=BC=EC=9D=B4=ED=8C=85=20=EC=A0=81=EC=9A=A9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../survey/check/detail/SubjectiveQuestionCard.kt | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) 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), + ) } } }