From ea51acd1a4a6e2e9e3d54ddc89ef05bdb51ad1cd Mon Sep 17 00:00:00 2001 From: Jackson Harper Date: Mon, 24 Jul 2023 15:21:07 +0800 Subject: [PATCH] Simplify drop shadow gradient in light mode --- apple/OmnivoreKit/Sources/App/Views/Home/HomeFeedViewIOS.swift | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/apple/OmnivoreKit/Sources/App/Views/Home/HomeFeedViewIOS.swift b/apple/OmnivoreKit/Sources/App/Views/Home/HomeFeedViewIOS.swift index c9d414ea4..2dff5ed21 100644 --- a/apple/OmnivoreKit/Sources/App/Views/Home/HomeFeedViewIOS.swift +++ b/apple/OmnivoreKit/Sources/App/Views/Home/HomeFeedViewIOS.swift @@ -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() }