Skip to content

Commit

Permalink
#119 [fix] : 뉴스 이미지 없는경우 padding 처리
Browse files Browse the repository at this point in the history
  • Loading branch information
chanubc committed Nov 26, 2024
1 parent fedcb2f commit 033fe71
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -66,12 +66,12 @@ fun WableNewsItems(
NewsImage(
imageUrl = newsItem.newsImage,
modifier = Modifier
.padding(end = dimensionResource(id = com.teamwable.common.R.dimen.padding_horizontal))
.widthIn(max = 100.dp)
.aspectRatio(1.43f),
)
Column(
modifier = Modifier.padding(
start = dimensionResource(id = com.teamwable.common.R.dimen.padding_horizontal),
top = 4.dp,
bottom = 4.dp,
),
Expand Down

0 comments on commit 033fe71

Please sign in to comment.