Onboarding: enlarge welcome-page feature icons 16pt → 20pt (semibold, wider alignment frame) for readability

This commit is contained in:
FuelBoard Contributor
2026-08-14 22:43:10 +01:00
parent bfb59d498a
commit 9571e0c876
2794 changed files with 54 additions and 3 deletions
+2 -2
View File
@@ -339,9 +339,9 @@ struct OnboardingView: View {
private func featureRow(icon: String, text: LocalizedStringKey) -> some View {
HStack(spacing: 12) {
Image(systemName: icon)
.font(.system(size: 16, weight: .semibold))
.font(.system(size: 20, weight: .semibold))
.foregroundStyle(Color.accentColor)
.frame(width: 28)
.frame(width: 32)
Text(text)
.font(.subheadline)
Spacer(minLength: 0)