커스텀 폰트 pretendard-medium, gmarket-medium를 사용하고 있던 것을 appFont 모디
파이어를 사용하여 한국어는 pretendard, 그 외에는 시스템 폰트를 사용하도록 수정
This commit is contained in:
@@ -22,7 +22,7 @@ struct MessageView: View {
|
||||
Tab()
|
||||
|
||||
Text("※ 보관하지 않은 받은 메시지는 3일 후, 자동 삭제됩니다.")
|
||||
.font(.custom(Font.medium.rawValue, size: 13.3))
|
||||
.appFont(size: 13.3, weight: .medium)
|
||||
.padding(.top, 20)
|
||||
|
||||
switch viewModel.currentTab {
|
||||
@@ -51,7 +51,7 @@ struct MessageView: View {
|
||||
}) {
|
||||
VStack(spacing: 0) {
|
||||
Text("문자")
|
||||
.font(.custom(Font.medium.rawValue, size: 16.7))
|
||||
.appFont(size: 16.7, weight: .medium)
|
||||
.foregroundColor(Color(hex: viewModel.currentTab == .text ? "eeeeee" : "777777"))
|
||||
.frame(width: tabWidth, height: 50)
|
||||
|
||||
@@ -70,7 +70,7 @@ struct MessageView: View {
|
||||
}) {
|
||||
VStack(spacing: 0) {
|
||||
Text("음성")
|
||||
.font(.custom(Font.medium.rawValue, size: 16.7))
|
||||
.appFont(size: 16.7, weight: .medium)
|
||||
.foregroundColor(Color(hex: viewModel.currentTab == .voice ? "eeeeee" : "777777"))
|
||||
.frame(width: tabWidth, height: 50)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user