Skip to content

Commit

Permalink
[FEAT]#134: 투표 왼쪽 정렬
Browse files Browse the repository at this point in the history
  • Loading branch information
flash159483 committed Aug 24, 2024
1 parent 399211a commit ad99cda
Showing 1 changed file with 8 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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,
)
}
}
}
}
Expand Down

0 comments on commit ad99cda

Please sign in to comment.