Skip to content

Commit

Permalink
Fix #201: Updater shadow alpha, spread
Browse files Browse the repository at this point in the history
  • Loading branch information
0se0 committed Aug 18, 2024
1 parent 14572f8 commit 2b623f3
Showing 1 changed file with 8 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,14 @@ fun StoreDetailMenuBox(
horizontalAlignment = Alignment.CenterHorizontally,
modifier = Modifier
.fillMaxWidth()
.shadow(1.dp, RoundedCornerShape(10.dp))
.clip(RoundedCornerShape(10.dp))
.shadow(
elevation = 10.dp,
shape = RoundedCornerShape(20.dp),
spotColor = Gray900.copy(alpha = 0.5f),
ambientColor = Gray900.copy(alpha = 0.5f),
clip = false
)
.clip(RoundedCornerShape(20.dp))
.background(White)
.padding(horizontal = 28.dp, vertical = 32.dp)
.wrapContentSize()
Expand Down

0 comments on commit 2b623f3

Please sign in to comment.