From 607acdbfe49523ce310055f0ea99f88bb67da4c1 Mon Sep 17 00:00:00 2001 From: jack Date: Sat, 13 Sep 2025 22:10:07 +0200 Subject: [PATCH] Header spacing: add breathing room between channel badge, notes button, and people count\n\n- Add trailing padding after #mesh/#geohash badge.\n- Add leading padding before notes button and people counter to improve readability. --- bitchat/Views/ContentView.swift | 3 +++ 1 file changed, 3 insertions(+) diff --git a/bitchat/Views/ContentView.swift b/bitchat/Views/ContentView.swift index b2572b64..b8a0bc34 100644 --- a/bitchat/Views/ContentView.swift +++ b/bitchat/Views/ContentView.swift @@ -1174,6 +1174,7 @@ struct ContentView: View { .accessibilityLabel("location channels") } .buttonStyle(.plain) + .padding(.trailing, 8) // Notes icon (mesh only and when location is authorized), to the right of #mesh if case .mesh = locationManager.selectedChannel, locationManager.permissionState == .authorized { @@ -1195,6 +1196,7 @@ struct ContentView: View { .fixedSize(horizontal: true, vertical: false) } .buttonStyle(.plain) + .padding(.leading, 8) .accessibilityLabel("Location notes for this place") } @@ -1208,6 +1210,7 @@ struct ContentView: View { .accessibilityHidden(true) } .foregroundColor(headerCountColor) + .padding(.leading, 8) .lineLimit(1) .fixedSize(horizontal: true, vertical: false)