diff --git a/SodaLive/Sources/Explorer/Profile/UserProfileView.swift b/SodaLive/Sources/Explorer/Profile/UserProfileView.swift index 865dcce..d7e6c43 100644 --- a/SodaLive/Sources/Explorer/Profile/UserProfileView.swift +++ b/SodaLive/Sources/Explorer/Profile/UserProfileView.swift @@ -387,6 +387,8 @@ struct UserProfileView: View { Image("ic_back") .resizable() .frame(width: 20, height: 20) + .frame(minWidth: 44, minHeight: 44) + .contentShape(Rectangle()) } Spacer() @@ -414,7 +416,8 @@ struct UserProfileView: View { } } .padding(.top, proxy.safeAreaInsets.top) - .padding(.horizontal, 24) + .padding(.leading, 12) + .padding(.trailing, 24) .frame(height: proxy.safeAreaInsets.top + 50) }