Skip to content

Commit

Permalink
refactor :: 패딩 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
Tmdhoon2 committed Feb 4, 2024
1 parent a791fd7 commit f4ffe07
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions feature/home/src/main/java/team/retum/home/ui/HomeScreen.kt
Original file line number Diff line number Diff line change
Expand Up @@ -385,7 +385,7 @@ private fun ApplyStatus(
Row(
modifier = Modifier
.align(Alignment.Start)
.padding(vertical = 10.dp),
.padding(vertical = 8.dp),
horizontalArrangement = Arrangement.spacedBy(8.dp),
verticalAlignment = Alignment.CenterVertically,
) {
Expand Down Expand Up @@ -416,13 +416,13 @@ private fun ApplyStatus(
Box(
modifier = Modifier
.fillMaxWidth()
.padding(vertical = 4.dp)
.clip(RoundedCornerShape(12.dp))
.border(
width = 1.dp,
color = JobisTheme.colors.surfaceVariant,
shape = RoundedCornerShape(12.dp),
)
.padding(vertical = 4.dp),
),
contentAlignment = Alignment.Center,
) {
Text(
Expand Down

0 comments on commit f4ffe07

Please sign in to comment.