From 6cc47e066147e2dfd8ef369247101624925b27fe Mon Sep 17 00:00:00 2001 From: Stefan Ceriu Date: Thu, 2 Oct 2025 21:04:55 +0300 Subject: [PATCH] =?UTF-8?q?Fix=20how=20we=20generate=20app=20icon=20banner?= =?UTF-8?q?s=20and=20implicitly=20the=20nightly=20icon=20(..again=20?= =?UTF-8?q?=F0=9F=A4=A6=E2=80=8D=E2=99=82=EF=B8=8F).?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Tools/Sources/Commands/AppIconBanner.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Tools/Sources/Commands/AppIconBanner.swift b/Tools/Sources/Commands/AppIconBanner.swift index c6f0a3db7..ed1d71319 100644 --- a/Tools/Sources/Commands/AppIconBanner.swift +++ b/Tools/Sources/Commands/AppIconBanner.swift @@ -56,9 +56,9 @@ struct BannerImage: View { .font(.system(size: 140)) .lineLimit(1) .minimumScaleFactor(0.5) - .padding() - .background(Color.black.opacity(0.5)) + .padding(.horizontal, image.size.width * 0.1) .frame(maxWidth: .infinity) + .background(Color.black.opacity(0.5)) } .frame(width: image.size.width, height: image.size.height) }