From 54403ed4b36074f55a5157a852a0d1ae4f2dbee1 Mon Sep 17 00:00:00 2001 From: FuelBoard Contributor Date: Tue, 11 Aug 2026 15:04:02 +0100 Subject: [PATCH] Enlarge brand logo badges 34pt -> 46pt --- FuelBoard/ContentView.swift | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/FuelBoard/ContentView.swift b/FuelBoard/ContentView.swift index c3d06e0..73ae5ec 100644 --- a/FuelBoard/ContentView.swift +++ b/FuelBoard/ContentView.swift @@ -241,14 +241,14 @@ struct StationRow: View { Image(asset) .resizable() .scaledToFit() - .padding(3) + .padding(5) } else { Image(systemName: "fuelpump.fill") - .font(.system(size: 16)) + .font(.system(size: 22)) .foregroundStyle(.white) } } - .frame(width: 34, height: 34) + .frame(width: 46, height: 46) .background(Circle().fill(.white)) .clipShape(Circle()) .overlay(Circle().stroke(Color.primary.opacity(0.08), lineWidth: 1))