From 2596f0a7383bcafb80d4255e259a317268fe4e98 Mon Sep 17 00:00:00 2001 From: Doug <6060466+pixlwave@users.noreply.github.com> Date: Thu, 17 Apr 2025 14:30:33 +0100 Subject: [PATCH] Tweak the size of the new bloom to match Figma better. (#4039) Also increase the resolution to reduce banding. --- ElementX/Sources/Screens/HomeScreen/View/BloomModifier.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ElementX/Sources/Screens/HomeScreen/View/BloomModifier.swift b/ElementX/Sources/Screens/HomeScreen/View/BloomModifier.swift index d1c36e46e..e71c1b2c5 100644 --- a/ElementX/Sources/Screens/HomeScreen/View/BloomModifier.swift +++ b/ElementX/Sources/Screens/HomeScreen/View/BloomModifier.swift @@ -65,9 +65,9 @@ struct NewBloomModifier: ViewModifier { private var bloomGradient: some View { LinearGradient(colors: [.compound._bgOwnPill, .clear], // This isn't the final gradient. startPoint: .top, - endPoint: .bottom) + endPoint: .init(x: 0.5, y: 0.7)) .ignoresSafeArea(edges: .all) - .frame(width: 100, height: 100) + .frame(width: 256, height: 256) } }