Revert "ui: Add more padding everywhere."

This reverts commit 36107a2752.
This commit is contained in:
William Casarin
2022-12-17 17:01:54 -08:00
parent 36107a2752
commit 300cae6800
3 changed files with 2 additions and 4 deletions

View File

@@ -180,7 +180,6 @@ struct ContentView: View {
if let damus = self.damus_state {
NavigationView {
MainContent(damus: damus)
.padding([.leading, .trailing])
.toolbar {
ToolbarItem(placement: .navigationBarLeading) {
let profile_model = ProfileModel(pubkey: damus_state!.pubkey, damus: damus_state!)

View File

@@ -94,10 +94,8 @@ struct EventView: View {
.buttonStyle(PlainButtonStyle())
TextEvent(inner_ev, pubkey: inner_ev.pubkey)
}
.padding([.top], 2)
} else {
TextEvent(event, pubkey: pubkey)
.padding([.top], 6)
}
}
}
@@ -148,6 +146,7 @@ struct EventView: View {
.background(event_validity_color(event.validity))
.id(event.id)
.frame(maxWidth: .infinity, minHeight: PFP_SIZE)
.padding([.bottom], 4)
.event_context_menu(event, privkey: damus.keypair.privkey)
}
}

View File

@@ -18,7 +18,7 @@ func PostButton(action: @escaping () -> ()) -> some View {
})
.background(Color.blue)
.cornerRadius(38.5)
.padding(.bottom)
.padding()
.shadow(color: Color.black.opacity(0.3),
radius: 3,
x: 3,