mirror of
https://github.com/yattee/yattee.git
synced 2025-04-26 00:26:33 +00:00
Merge pull request #531 from dnicolson/fix-tvos-settings-table
Fix tvOS settings table padding
This commit is contained in:
commit
bbb16204d8
@ -188,6 +188,9 @@ struct SettingsView: View {
|
||||
Label("Advanced", systemImage: "wrench.and.screwdriver")
|
||||
}
|
||||
}
|
||||
#if os(tvOS)
|
||||
.padding(.horizontal, 20)
|
||||
#endif
|
||||
|
||||
Section(footer: helpFooter) {
|
||||
NavigationLink {
|
||||
@ -196,6 +199,9 @@ struct SettingsView: View {
|
||||
Label("Help", systemImage: "questionmark.circle")
|
||||
}
|
||||
}
|
||||
#if os(tvOS)
|
||||
.padding(.horizontal, 20)
|
||||
#endif
|
||||
|
||||
#if !os(tvOS)
|
||||
Section(header: Text("Contact"), footer: versionString) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user