Skip to content

Commit

Permalink
No longer draw disabled overlay over search suggestions
Browse files Browse the repository at this point in the history
  • Loading branch information
DRSchlaubi committed Jun 1, 2023
1 parent 96cb358 commit e37f141
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ fun SoundContainer(
modifier = Modifier
.fillMaxSize()
.background(ColorScheme.disabled.copy(alpha = .4f))
.zIndex(100f)
.zIndex(1f)
) {}
}
}
Expand Down Expand Up @@ -167,6 +167,7 @@ fun SoundCard(
modifier = Modifier
.clip(RoundedCornerShape(10.dp))
.shadow(2.dp)
.zIndex(2f)
.background(ColorScheme.secondaryContainer)
.padding(8.dp),
) {
Expand Down

0 comments on commit e37f141

Please sign in to comment.