Skip to content

Commit

Permalink
[fix/#118] 버튼 margin 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
Mnseo committed Feb 1, 2024
1 parent e443aa4 commit 5f8fca3
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ fun RecommendDetailScreen(
}
TmMarginVerticalSpacer(size = 22)
FriendBtn(
text = "추천한 친구 ${friendsCount.size}",
text = "친구 ${friendsCount.size}",
viewModel = viewModel,
userId= userId,
navController = navController
Expand Down Expand Up @@ -141,7 +141,7 @@ fun FriendBtn(text: String, viewModel: RecommendDetailViewModel, userId: Int, na
Row(
modifier = Modifier
.fillMaxWidth()
.padding(horizontal = 20.dp),
.padding(horizontal = 40.dp),
horizontalArrangement = Arrangement.spacedBy(8.dp)
) {
Button(
Expand Down

0 comments on commit 5f8fca3

Please sign in to comment.