Skip to content

Commit

Permalink
[FEAT/#306] 좌우 스크롤 패딩 값 삭제
Browse files Browse the repository at this point in the history
  • Loading branch information
arinming committed Jan 4, 2025
1 parent 7342eff commit 608733b
Showing 1 changed file with 8 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,7 @@ fun SearchInternList(
searchViewsList: List<SearchPopularAnnouncement>?,
navigateToIntern: (Long) -> Unit,
) {
Column(
modifier = Modifier.padding(horizontal = 24.dp)
) {
Column {
Text(
text = stringResource(
id = when (type) {
Expand All @@ -33,12 +31,15 @@ fun SearchInternList(
}
),
style = TerningTheme.typography.body3,
color = Grey400
color = Grey400,
modifier = Modifier.padding(horizontal = 24.dp)
)

LazyRow(
modifier = Modifier.padding(vertical = 12.dp),
modifier = Modifier
.padding(vertical = 12.dp),
horizontalArrangement = Arrangement.spacedBy(12.dp),
contentPadding = androidx.compose.foundation.layout.PaddingValues(horizontal = 24.dp)
) {
when (type) {
InternListType.VIEW -> searchViewsList?.let {
Expand All @@ -64,6 +65,7 @@ fun SearchInternList(
}
}
}

Spacer(modifier = Modifier.padding(top = 20.dp))
}
}
}

0 comments on commit 608733b

Please sign in to comment.