Skip to content

Commit

Permalink
[REFACTOR] #150 : 일정 수정 화면 및 일정 등록 화면 버튼 하단 마진 없던 이슈 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
tgyuuAn committed Mar 5, 2024
1 parent 1d4cab3 commit 344bc75
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ internal fun EventEditScreen(
.verticalScroll(scrollState)
.height(IntrinsicSize.Max)
.padding(paddingValues)
.padding(vertical = 16.dp),
.padding(top = 16.dp),
) {
WappSubTopBar(
titleRes = R.string.event_edit,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ internal fun EventRegistrationContent(
modifier = modifier
.fillMaxSize()
.addFocusCleaner(focusManager)
.padding(top = 40.dp),
.padding(top = 40.dp, bottom = 16.dp),
) {
AnimatedContent(
targetState = eventRegistrationState,
Expand Down Expand Up @@ -278,7 +278,7 @@ private fun EventScheduleContent(

Column(
verticalArrangement = Arrangement.spacedBy(10.dp),
modifier = Modifier.padding(top = 40.dp),
modifier = Modifier.padding(top = 40.dp, bottom = 16.dp),
) {
Row(
verticalAlignment = Alignment.CenterVertically,
Expand Down

0 comments on commit 344bc75

Please sign in to comment.