Skip to content

Commit

Permalink
✨ 포토카드 간격 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
oreocube committed Aug 17, 2024
1 parent 13c013d commit 1e61adf
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -208,22 +208,22 @@ private fun PhotoCard(
Text(
modifier = Modifier
.align(Alignment.TopCenter)
.padding(top = 37.dp),
.padding(top = 25.dp),
text = date,
color = Gray80,
style = PicTypography.bodyMedium16,
)
PicFourPhotoGrid(
modifier = Modifier
.padding(top = 74.dp, bottom = 96.dp, start = 30.dp, end = 30.dp)
.padding(top = 85.dp, bottom = 85.dp, start = 30.dp, end = 30.dp)
.align(Alignment.Center),
backgroundColor = keyword.frontCardBackgroundColor,
images = images,
)
Text(
modifier = Modifier
.align(Alignment.BottomCenter)
.padding(top = 31.dp, bottom = 41.dp),
.padding(bottom = 31.dp),
text = title,
color = Gray80,
style = PicTypography.headBold20,
Expand Down

0 comments on commit 1e61adf

Please sign in to comment.