Tweak toast indicator so that it's a bit more proeminent

This commit is contained in:
Stefan Ceriu
2023-05-10 19:26:14 +03:00
committed by Stefan Ceriu
parent a3a1073686
commit 91411d5aff

View File

@@ -32,9 +32,9 @@ struct UserIndicatorToastView: View {
.padding(.horizontal, 12.0)
.padding(.vertical, 10.0)
.frame(minWidth: 150.0)
.background(Color.element.system)
.background(Color.element.background)
.clipShape(RoundedCornerShape(radius: 24.0, corners: .allCorners))
.shadow(color: .black.opacity(0.1), radius: 10.0, y: 4.0)
.shadow(color: .black.opacity(0.25), radius: 10.0, y: 4.0)
.transition(toastTransition)
}