Fix accounts switcher padding on tvOS

This commit is contained in:
Arkadiusz Fal 2023-04-22 21:44:28 +02:00
parent ea997ffdb9
commit 72a98314c1

View File

@ -84,6 +84,9 @@ struct AccountsView: View {
.contentShape(Rectangle()) .contentShape(Rectangle())
} }
.buttonStyle(.plain) .buttonStyle(.plain)
#if os(tvOS)
.padding(.horizontal, 50)
#endif
} }
var closeButton: some View { var closeButton: some View {