Skip to content

Commit

Permalink
Merge pull request #231 from mash-up-kr/chore/recommend_bottom_padding
Browse files Browse the repository at this point in the history
[Chore] 추천화면 위 아래 스크롤 가능하도록 바텀 간격 더 줌
  • Loading branch information
evergreentree97 authored Sep 5, 2024
2 parents ca77a16 + e271b20 commit adc1d93
Showing 1 changed file with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,10 @@ internal fun RecommendationScreen(
.getTop(this)
.toDp()
})
.padding(top = 38.dp),
.padding(
top = 38.dp,
bottom = TabBarHeight + 48.dp
),
horizontalAlignment = Alignment.CenterHorizontally,
) {
Image(
Expand All @@ -121,7 +124,7 @@ internal fun RecommendationScreen(
)
Spacer(modifier = Modifier.padding(top = 10.dp))
Text(
text = "이 번주 이 밈 어때!",
text = "이번 주 이 밈 어때!",
style = FarmemeTheme.typography.heading.large.bold,
color = FarmemeTheme.textColor.primary,
)
Expand Down

0 comments on commit adc1d93

Please sign in to comment.