Fix padding on threads and search results view

Closes: #177
Changelog-Fixed: Fix padding on threads and search results views
This commit is contained in:
OlegAba
2022-12-29 00:58:00 -05:00
committed by William Casarin
parent 79ea4da2d2
commit d479f7a55a
2 changed files with 3 additions and 3 deletions

View File

@@ -55,7 +55,7 @@ struct SearchHomeView: View {
// Fetch new information by unsubscribing and resubscribing to the relay
model.unsubscribe()
model.subscribe()
}
}.padding(.horizontal)
}
var MainContent: some View {

View File

@@ -287,8 +287,8 @@ struct ThreadV2View: View {
)
}.buttonStyle(.plain)
}
}
}.padding().navigationBarTitle("Thread")
}.padding()
}.navigationBarTitle("Thread")
}
}
}