From 743551c10c7e173d63247ad15e083f91ffa1822d Mon Sep 17 00:00:00 2001 From: jack Date: Sat, 13 Sep 2025 22:27:51 +0200 Subject: [PATCH] Header spacing: move #mesh/#geohash closer to notes/bookmark\n\n- Reduce trailing padding on channel badge and leading padding on notes/bookmark to cluster them together.\n- Keeps larger gap before people count for readability. --- bitchat/Views/ContentView.swift | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/bitchat/Views/ContentView.swift b/bitchat/Views/ContentView.swift index 71e7de2b..e0a904b8 100644 --- a/bitchat/Views/ContentView.swift +++ b/bitchat/Views/ContentView.swift @@ -1166,7 +1166,7 @@ struct ContentView: View { } .buttonStyle(.plain) .padding(.leading, 14) - .padding(.trailing, 8) + .padding(.trailing, 4) // Bookmark toggle (geochats): position after the #geohash badge with same spacing if case .location(let ch) = locationManager.selectedChannel { @@ -1175,7 +1175,7 @@ struct ContentView: View { .font(.system(size: 12)) } .buttonStyle(.plain) - .padding(.leading, 8) + .padding(.leading, 4) .accessibilityLabel("Toggle bookmark for #\(ch.geohash)") } @@ -1199,7 +1199,7 @@ struct ContentView: View { .fixedSize(horizontal: true, vertical: false) } .buttonStyle(.plain) - .padding(.leading, 8) + .padding(.leading, 4) .accessibilityLabel("Location notes for this place") }