1
0
mirror of https://github.com/yattee/yattee.git synced 2025-04-28 07:50:33 +05:30

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 {