Add bottom padding to tvOS search header for focus effect clearance

This commit is contained in:
Arkadiusz Fal
2026-04-13 22:06:13 +02:00
parent 5417374275
commit c3a2f7a965
2 changed files with 2 additions and 0 deletions

View File

@@ -149,6 +149,7 @@ struct InstanceBrowseView: View {
.focusSection() .focusSection()
.padding(.horizontal, 48) .padding(.horizontal, 48)
.padding(.top, 20) .padding(.top, 20)
.padding(.bottom, 10)
// Content // Content
ScrollView { ScrollView {

View File

@@ -215,6 +215,7 @@ struct SearchView: View {
.focusSection() .focusSection()
.padding(.horizontal, 48) .padding(.horizontal, 48)
.padding(.top, 20) .padding(.top, 20)
.padding(.bottom, 10)
searchContent searchContent
.focusSection() .focusSection()