Skip to content

Commit

Permalink
[chore] #249 하단 버튼 패딩값 제거
Browse files Browse the repository at this point in the history
  • Loading branch information
t1nm1ksun committed Sep 13, 2024
1 parent 3a974e5 commit 9aa01b2
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,8 @@ fun CourseDetailBottomBar(
onLikeButtonClicked: () -> Unit,
onEnrollButtonClicked: () -> Unit
) {
var buttonHeight by remember { mutableStateOf(0.dp) } val density = LocalDensity.current
var buttonHeight by remember { mutableStateOf(0.dp) }
val density = LocalDensity.current
Row(
modifier = modifier
.fillMaxWidth()
Expand All @@ -50,7 +51,7 @@ fun CourseDetailBottomBar(
onClick = onLikeButtonClicked,
cornerRadius = 14.dp,
paddingHorizontal = 23.dp,
paddingVertical = 16.5.dp
paddingVertical = 0.dp
)
Spacer(modifier = Modifier.width(12.dp))
DateRoadBasicButton(
Expand Down

0 comments on commit 9aa01b2

Please sign in to comment.