From 9cf450f8c5e63965a6e92d15df59f811f713f51c Mon Sep 17 00:00:00 2001 From: Trey t Date: Fri, 4 Feb 2022 17:20:19 -0600 Subject: [PATCH] placement of toggle image --- Shared/views/SwitchableView.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Shared/views/SwitchableView.swift b/Shared/views/SwitchableView.swift index b6c7886..5b71b1b 100644 --- a/Shared/views/SwitchableView.swift +++ b/Shared/views/SwitchableView.swift @@ -30,12 +30,12 @@ struct SwitchableView: View { Spacer() Image(systemName: "arrow.triangle.2.circlepath.circle") .resizable() - .frame(width: 25, height: 25, alignment: .trailing) + .frame(width: 20, height: 20, alignment: .trailing) } Spacer() } .padding(.trailing, 8) - .padding(.top, 8) + .padding(.top, 12) .allowsHitTesting(false) .foregroundColor(Color(UIColor.systemGray)) }