Fix how we generate app icon banners and implicitly the nightly icon (..again 🤦‍♂️).

This commit is contained in:
Stefan Ceriu
2025-10-02 21:04:55 +03:00
parent c91c69b86b
commit 6cc47e0661

View File

@@ -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)
}