From ad99cda8ef4a0a15468e9f1d69050894cd96cf5c Mon Sep 17 00:00:00 2001 From: flash159483 Date: Sun, 25 Aug 2024 01:11:25 +0900 Subject: [PATCH] =?UTF-8?q?[FEAT]#134:=20=ED=88=AC=ED=91=9C=20=EC=99=BC?= =?UTF-8?q?=EC=AA=BD=20=EC=A0=95=EB=A0=AC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../com/bff/wespot/vote/screen/VotingScreen.kt | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/feature/vote/src/main/java/com/bff/wespot/vote/screen/VotingScreen.kt b/feature/vote/src/main/java/com/bff/wespot/vote/screen/VotingScreen.kt index e6aaf480..99d8fe4d 100644 --- a/feature/vote/src/main/java/com/bff/wespot/vote/screen/VotingScreen.kt +++ b/feature/vote/src/main/java/com/bff/wespot/vote/screen/VotingScreen.kt @@ -309,12 +309,14 @@ private fun VotingProgressScreen( }, paddingValues = PaddingValues(vertical = 8.dp, horizontal = 20.dp), ) { - Text( - text = voteItem.content, - style = StaticTypeScale.Default.body3, - modifier = Modifier.padding(vertical = 14.dp), - textAlign = TextAlign.Start, - ) + Box(modifier = Modifier.fillMaxWidth()) { + Text( + text = voteItem.content, + style = StaticTypeScale.Default.body3, + modifier = Modifier.padding(vertical = 18.dp, horizontal = 14.dp), + textAlign = TextAlign.Start, + ) + } } } }