Skip to content

Commit c4e0549

Browse files
committed
Chore: offset -> padding으로 수정
- 버튼과 제보완료 content 영역 겹침 문제 해결을 위해 padding으로 변경
1 parent dc20169 commit c4e0549

1 file changed

Lines changed: 1 addition & 4 deletions

File tree

  • presentation/src/main/java/com/threegap/bitnagil/presentation/screen/reportwrite/component/template

presentation/src/main/java/com/threegap/bitnagil/presentation/screen/reportwrite/component/template/CompleteReportContent.kt

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ import androidx.compose.foundation.layout.Column
66
import androidx.compose.foundation.layout.Spacer
77
import androidx.compose.foundation.layout.fillMaxSize
88
import androidx.compose.foundation.layout.fillMaxWidth
9-
import androidx.compose.foundation.layout.offset
109
import androidx.compose.foundation.layout.padding
1110
import androidx.compose.foundation.layout.size
1211
import androidx.compose.foundation.rememberScrollState
@@ -76,9 +75,7 @@ fun CompleteReportContent(
7675
)
7776

7877
CompleteReportCard(
79-
modifier = Modifier
80-
.offset(y = 115.dp)
81-
.padding(horizontal = 18.dp),
78+
modifier = Modifier.padding(top = 115.dp, start = 18.dp, end = 18.dp),
8279
title = uiState.reportTitle,
8380
category = uiState.selectedCategory,
8481
address = uiState.currentAddress,

0 commit comments

Comments
 (0)