Simplify drop shadow gradient in light mode

This commit is contained in:
Jackson Harper
2023-07-24 15:21:07 +08:00
parent 0d186e3d44
commit ea51acd1a4

View File

@ -438,7 +438,8 @@ struct AnimatingCellHeight: AnimatableModifier {
VStack {
LinearGradient(gradient: Gradient(colors: [.black.opacity(0.06), .systemGray6]),
startPoint: .top, endPoint: .bottom)
.frame(maxWidth: .infinity, maxHeight: 6)
.frame(maxWidth: .infinity, maxHeight: 3)
.opacity(0.4)
Spacer()
}