Skip to content

Commit

Permalink
[FIX][#13] 마이 페이지 사진 화면 좌우 전체 패딩 제거
Browse files Browse the repository at this point in the history
  • Loading branch information
josushell committed Feb 12, 2024
1 parent af47be5 commit 493caad
Showing 1 changed file with 2 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -121,9 +121,7 @@ private fun MyAlbumImageContent(
val pagerState = rememberPagerState(pageCount = { pageCount })

Column(
modifier = Modifier
.fillMaxSize()
.padding(horizontal = 16.dp),
modifier = Modifier.fillMaxSize(),
horizontalAlignment = Alignment.CenterHorizontally,
) {
Spacer(modifier = Modifier.weight(1f))
Expand Down Expand Up @@ -161,7 +159,7 @@ private fun MyAlbumImageContent(
modifier = Modifier
.fillMaxWidth()
.navigationBarsPadding()
.padding(start = 4.dp, end = 4.dp, bottom = 18.dp),
.padding(start = 20.dp, end = 20.dp, bottom = 18.dp),
) {
ILabButton(
onClick = onShareBtnClick,
Expand Down

0 comments on commit 493caad

Please sign in to comment.