ui: keep station brand badges white

This commit is contained in:
FuelBoard Contributor
2026-08-18 12:56:49 +01:00
parent db916cafcb
commit 2e23dcb9ae
+2 -2
View File
@@ -790,11 +790,11 @@ struct StationRow: View {
} else {
Image(systemName: "fuelpump.fill")
.font(.system(size: 22, weight: .semibold))
.foregroundStyle(.primary)
.foregroundStyle(Color.black.opacity(0.82))
}
}
.frame(width: 46, height: 46)
.background(Circle().fill(Color(.secondarySystemBackground)))
.background(Circle().fill(Color.white))
.clipShape(Circle())
.overlay(Circle().stroke(Color.primary.opacity(0.10), lineWidth: 1))
.shadow(color: .black.opacity(0.08), radius: 2, y: 1)