마이페이지 - 사용방법 배너 간격 수정

This commit is contained in:
Yu Sung
2023-08-21 02:28:25 +09:00
parent d93c3e8836
commit 4e62d752f9

View File

@@ -96,7 +96,6 @@ struct MyPageView: View {
ServiceCenterButtonView() ServiceCenterButtonView()
.padding(.top, 40) .padding(.top, 40)
.padding(.bottom, data.isAuth ? 40 : 0)
if !data.isAuth { if !data.isAuth {
AuthButtonView() AuthButtonView()
@@ -114,7 +113,7 @@ struct MyPageView: View {
width: screenSize().width, width: screenSize().width,
height: (200 * screenSize().width) / 1080 height: (200 * screenSize().width) / 1080
) )
.padding(.top, 40) .padding(.vertical, 40)
.onTapGesture { .onTapGesture {
UIApplication.shared.open(url) UIApplication.shared.open(url)
} }