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

Closes: #328
Changelog-Fixed: Fix padding issue at top of home timeline
This commit is contained in:
Ben Weeks
2023-01-15 18:44:07 +00:00
committed by William Casarin
parent 031408dec3
commit fb1f99e728
2 changed files with 2 additions and 1 deletions

View File

@@ -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)

View File

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