From 87d66eae948f3b8774dc0cc7c1530c1b608991aa Mon Sep 17 00:00:00 2001 From: FuelBoard Contributor Date: Sun, 16 Aug 2026 09:48:33 +0100 Subject: [PATCH] Key sheet: padding on TOP + star cards MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The two bottom cards (TOP, star) previously had no padding — their background hugged the text. Add .padding(.horizontal, 14).padding(.vertical, 12), matching (slightly exceeding) the RAG cards' vertical padding so the info cards read as proper cards. --- FuelBoard/StationsView.swift | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/FuelBoard/StationsView.swift b/FuelBoard/StationsView.swift index 1c3535e..d28989d 100644 --- a/FuelBoard/StationsView.swift +++ b/FuelBoard/StationsView.swift @@ -222,6 +222,8 @@ struct StationsView: View { .font(.subheadline.weight(.semibold)) Spacer(minLength: 0) } + .padding(.horizontal, 14) + .padding(.vertical, 12) .keyCardFill(color: .blue) HStack(spacing: 12) { Image(systemName: "star.fill") @@ -232,6 +234,8 @@ struct StationsView: View { .font(.subheadline.weight(.semibold)) Spacer(minLength: 0) } + .padding(.horizontal, 14) + .padding(.vertical, 12) .keyCardFill(color: .yellow) Text("Colours match each station's rating on the list") .font(.footnote)