커스텀 폰트 pretendard-medium, gmarket-medium를 사용하고 있던 것을 appFont 모디
파이어를 사용하여 한국어는 pretendard, 그 외에는 시스템 폰트를 사용하도록 수정
This commit is contained in:
@@ -25,7 +25,7 @@ struct LiveRoomDialogView: View {
|
||||
.frame(width: 36, height: 36)
|
||||
|
||||
Text(content)
|
||||
.font(.custom(Font.medium.rawValue, size: 13.3))
|
||||
.appFont(size: 13.3, weight: .medium)
|
||||
.foregroundColor(Color(hex: "eeeeee"))
|
||||
}
|
||||
.padding(.horizontal, 26.7)
|
||||
@@ -35,7 +35,7 @@ struct LiveRoomDialogView: View {
|
||||
|
||||
if let cancelTitle = cancelTitle, let cancelAction = cancelAction {
|
||||
Text(cancelTitle)
|
||||
.font(.custom(Font.medium.rawValue, size: 10))
|
||||
.appFont(size: 10, weight: .medium)
|
||||
.foregroundColor(.white)
|
||||
.padding(.horizontal, 8)
|
||||
.padding(.vertical, 8.3)
|
||||
@@ -51,7 +51,7 @@ struct LiveRoomDialogView: View {
|
||||
|
||||
if let confirmTitle = confirmTitle, let confirmAction = confirmAction {
|
||||
Text(confirmTitle)
|
||||
.font(.custom(Font.medium.rawValue, size: 10))
|
||||
.appFont(size: 10, weight: .medium)
|
||||
.foregroundColor(Color(hex: "3bb9f1"))
|
||||
.padding(.horizontal, 8)
|
||||
.padding(.vertical, 8.3)
|
||||
|
||||
Reference in New Issue
Block a user