커스텀 폰트 pretendard-bold, gmarket-bold를 사용하고 있던 것을 appFont 모디파이어를 사용하여 한국어는 pretendard, 그 외에는 시스템 폰트를 사용하도록 수정
This commit is contained in:
@@ -36,7 +36,7 @@ struct ContentOrderConfirmDialogView: View {
|
||||
|
||||
VStack(spacing: 0) {
|
||||
Text("구매확인")
|
||||
.font(.custom(Font.bold.rawValue, size: 18.3))
|
||||
.appFont(size: 18.3, weight: .bold)
|
||||
.foregroundColor(Color.grayee)
|
||||
|
||||
HStack(spacing: 11) {
|
||||
@@ -64,7 +64,7 @@ struct ContentOrderConfirmDialogView: View {
|
||||
.cornerRadius(2)
|
||||
|
||||
Text(title)
|
||||
.font(.custom(Font.bold.rawValue, size: 11.3))
|
||||
.appFont(size: 11.3, weight: .bold)
|
||||
.foregroundColor(Color.grayd2)
|
||||
.padding(.top, 2)
|
||||
|
||||
@@ -127,7 +127,7 @@ struct ContentOrderConfirmDialogView: View {
|
||||
.frame(width: 16.7, height: 16.7)
|
||||
|
||||
Text("\(usablePoint)")
|
||||
.font(.custom(Font.bold.rawValue, size: 13.3))
|
||||
.appFont(size: 13.3, weight: .bold)
|
||||
.foregroundColor(Color.grayee)
|
||||
}
|
||||
}
|
||||
@@ -145,13 +145,13 @@ struct ContentOrderConfirmDialogView: View {
|
||||
.frame(width: 16.7, height: 16.7)
|
||||
|
||||
Text("\(remainingCan)")
|
||||
.font(.custom(Font.bold.rawValue, size: 13.3))
|
||||
.appFont(size: 13.3, weight: .bold)
|
||||
.foregroundColor(Color.grayee)
|
||||
}
|
||||
}
|
||||
} else {
|
||||
Text("\(price * 110)원")
|
||||
.font(.custom(Font.bold.rawValue, size: 13.3))
|
||||
.appFont(size: 13.3, weight: .bold)
|
||||
.foregroundColor(Color.grayee)
|
||||
}
|
||||
|
||||
@@ -169,7 +169,7 @@ struct ContentOrderConfirmDialogView: View {
|
||||
|
||||
HStack(spacing: 12) {
|
||||
Text("취소")
|
||||
.font(.custom(Font.bold.rawValue, size: 18.3))
|
||||
.appFont(size: 18.3, weight: .bold)
|
||||
.foregroundColor(Color.button)
|
||||
.padding(.vertical, 15.7)
|
||||
.frame(maxWidth: .infinity)
|
||||
@@ -182,7 +182,7 @@ struct ContentOrderConfirmDialogView: View {
|
||||
.onTapGesture { isShowing = false }
|
||||
|
||||
Text("확인")
|
||||
.font(.custom(Font.bold.rawValue, size: 18.3))
|
||||
.appFont(size: 18.3, weight: .bold)
|
||||
.foregroundColor(.white)
|
||||
.padding(.vertical, 15.7)
|
||||
.frame(maxWidth: .infinity)
|
||||
|
||||
Reference in New Issue
Block a user