Skip to content

Commit

Permalink
[REFACTOR] #125 : 설문 체크 페이지 LazyColumn 수직 마진 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
tgyuuAn committed Feb 16, 2024
1 parent 4bcafca commit 2b2d8ce
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 @@ -58,10 +58,10 @@ internal fun SurveyCheckScreen(

is SurveyCheckViewModel.SurveyListUiState.Success -> {
LazyColumn(
verticalArrangement = Arrangement.spacedBy(8.dp),
verticalArrangement = Arrangement.spacedBy(20.dp),
modifier = Modifier
.fillMaxSize()
.padding(start = 16.dp, end = 16.dp, bottom = 16.dp)
.padding(start = 16.dp, end = 16.dp, bottom = 16.dp, top = 40.dp)
.padding(paddingValues),
) {
val surveyList = surveyListUiState.surveyList
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ internal fun SurveyItemCard(
) {
Column(
verticalArrangement = Arrangement.spacedBy(16.dp),
modifier = Modifier.padding(16.dp),
modifier = Modifier.padding(horizontal = 16.dp),
) {
Row(
horizontalArrangement = Arrangement.End,
Expand Down

0 comments on commit 2b2d8ce

Please sign in to comment.