커스텀 폰트 pretendard-bold, gmarket-bold를 사용하고 있던 것을 appFont 모디파이어를 사용하여 한국어는 pretendard, 그 외에는 시스템 폰트를 사용하도록 수정
This commit is contained in:
@@ -24,7 +24,7 @@ struct LiveReservationCancelView: View {
|
||||
if let item = viewModel.selectedReservationStatusItem {
|
||||
if viewModel.isCancelComplete {
|
||||
Text("예약취소가 완료되었습니다.")
|
||||
.font(.custom(Font.bold.rawValue, size: 20))
|
||||
.appFont(size: 20, weight: .bold)
|
||||
.foregroundColor(Color(hex: "a285eb"))
|
||||
.frame(width: screenSize().width - 26.7, alignment: .leading)
|
||||
.padding(.top, 33.3)
|
||||
@@ -125,7 +125,7 @@ struct LiveReservationCancelView: View {
|
||||
|
||||
VStack(spacing: 13.3) {
|
||||
Text("예약을 취소하시겠습니까?")
|
||||
.font(.custom(Font.bold.rawValue, size: 20))
|
||||
.appFont(size: 20, weight: .bold)
|
||||
.foregroundColor(Color(hex: "a285eb"))
|
||||
.frame(width: screenSize().width - 26.7, alignment: .leading)
|
||||
|
||||
@@ -186,7 +186,7 @@ struct LiveReservationCancelView: View {
|
||||
.frame(width: screenSize().width - 53.4, alignment: .leading)
|
||||
|
||||
Text("예약취소")
|
||||
.font(.custom(Font.bold.rawValue, size: 15))
|
||||
.appFont(size: 15, weight: .bold)
|
||||
.foregroundColor(.white)
|
||||
.padding(.vertical, 16)
|
||||
.frame(width: screenSize().width - 26.7)
|
||||
|
||||
Reference in New Issue
Block a user