Browse Source

Fixed Jack's issue with homepage gap at the top.

Closes: #328
Changelog-Fixed: Fix padding issue at top of home timeline
remove-participants
Ben Weeks 2 years ago
committed by William Casarin
parent
commit
fb1f99e728
  1. 2
      damus/ContentView.swift
  2. 1
      damus/Views/TimelineView.swift

2
damus/ContentView.swift

@ -103,7 +103,7 @@ struct ContentView: View {
}
.tabViewStyle(.page(indexDisplayMode: .never))
}
.safeAreaInset(edge: .top) {
.safeAreaInset(edge: .top, spacing: 0) {
VStack(spacing: 0) {
FiltersView
//.frame(maxWidth: 275)

1
damus/Views/TimelineView.swift

@ -52,6 +52,7 @@ struct InnerTimelineView: View {
}
}
.padding(.horizontal)
.padding(.top,10)
}
}

Loading…
Cancel
Save