Skip to content

Commit

Permalink
refactor :: 마이페이지 메뉴 간 padding 조절
Browse files Browse the repository at this point in the history
  • Loading branch information
DSMInhyeKang committed Mar 6, 2023
1 parent fad3260 commit bac5eb9
Showing 1 changed file with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,8 @@ struct MyPageView: View {
Color.PrimaryVariant.lighten2
.cornerRadius(5)
}
.padding(.top, 60)
.padding(.top, 55)
.padding(.bottom, 5)

HStack(spacing: 12) {
RewardPointCardView(
Expand All @@ -113,6 +114,7 @@ struct MyPageView: View {
rewardType: .minusPoint
)
}
.padding(.bottom, 5)

VStack(alignment: .leading, spacing: 0) {
Button {
Expand All @@ -136,6 +138,8 @@ struct MyPageView: View {

}
.myPageOptionBackground()
.padding(.bottom, 5)

VStack(alignment: .leading, spacing: 0) {
myPageOptionRowCardView(title: "로그아웃")
.dmsFont(.body(.body2), color: .System.error)
Expand All @@ -144,6 +148,7 @@ struct MyPageView: View {
}
.frame(maxWidth: .infinity)
.myPageOptionBackground()
.padding(.bottom, 5)

VStack(alignment: .leading, spacing: 0) {
myPageOptionRowCardView(title: "회원 탈퇴")
Expand Down

0 comments on commit bac5eb9

Please sign in to comment.