Skip to content

Commit 1860353

Browse files
committed
[BOOK-150] fix: MainBottomBar Shadow Opacity 적용 및 border 추가
1 parent 1899b6c commit 1860353

File tree

1 file changed

+10
-1
lines changed
  • feature/main/src/main/kotlin/com/ninecraft/booket/feature/main/component

1 file changed

+10
-1
lines changed

feature/main/src/main/kotlin/com/ninecraft/booket/feature/main/component/MainBottomBar.kt

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
package com.ninecraft.booket.feature.main.component
22

33
import androidx.compose.foundation.background
4+
import androidx.compose.foundation.border
45
import androidx.compose.foundation.interaction.MutableInteractionSource
56
import androidx.compose.foundation.layout.Box
67
import androidx.compose.foundation.layout.Column
@@ -50,7 +51,7 @@ internal fun MainBottomBar(
5051
topStart = ReedTheme.spacing.spacing3,
5152
topEnd = ReedTheme.spacing.spacing3,
5253
),
53-
color = ReedTheme.colors.borderPrimary,
54+
color = ReedTheme.colors.borderPrimary.copy(alpha = 0.05f),
5455
offsetY = (-4).dp,
5556
blur = 20.dp,
5657
)
@@ -60,6 +61,14 @@ internal fun MainBottomBar(
6061
topEnd = ReedTheme.spacing.spacing3,
6162
),
6263
)
64+
.border(
65+
width = 1.dp,
66+
color = ReedTheme.colors.borderPrimary,
67+
shape = RoundedCornerShape(
68+
topStart = ReedTheme.spacing.spacing3,
69+
topEnd = ReedTheme.spacing.spacing3,
70+
),
71+
)
6372
.background(White),
6473
) {
6574
Row(

0 commit comments

Comments
 (0)