diff --git a/DropDrug/Sources/ViewControllers/Auth/SelectLoginTypeVC.swift b/DropDrug/Sources/ViewControllers/Auth/SelectLoginTypeVC.swift index a44b347..9a46671 100644 --- a/DropDrug/Sources/ViewControllers/Auth/SelectLoginTypeVC.swift +++ b/DropDrug/Sources/ViewControllers/Auth/SelectLoginTypeVC.swift @@ -22,7 +22,7 @@ class SelectLoginTypeVC : UIViewController { lazy var mainLabel: UILabel = { let label = UILabel() - label.text = "드롭드럭에서\n올바른 의약품 폐기를 함께하고\n나와 지구를 치료해요!" + label.text = "드롭드락에서\n올바른 의약품 폐기를 함께하고\n나와 지구를 치료해요!" label.textColor = .white label.numberOfLines = 0 label.textAlignment = .center @@ -35,7 +35,7 @@ class SelectLoginTypeVC : UIViewController { button.backgroundColor = UIColor(hex: "#FEE500") button.setTitle(" 카카오로 시작하기", for: .normal) button.setTitleColor(UIColor(hex: "#191919"), for: .normal) - button.titleLabel?.font = UIFont.boldSystemFont(ofSize: 16) + button.titleLabel?.font = UIFont.ptdBoldFont(ofSize: 20) button.layer.cornerRadius = superViewWidth * 0.075 button.addTarget(self, action: #selector(kakaoButtonTapped), for: .touchUpInside) return button @@ -46,7 +46,7 @@ class SelectLoginTypeVC : UIViewController { button.setTitle("E-mail로 시작하기", for: .normal) button.backgroundColor = Constants.Colors.gray900 button.setTitleColor(.white, for: .normal) - button.titleLabel?.font = UIFont.boldSystemFont(ofSize: 16) + button.titleLabel?.font = UIFont.ptdBoldFont(ofSize: 20) button.layer.cornerRadius = superViewWidth * 0.075 button.addTarget(self, action: #selector(startTapped), for: .touchUpInside) return button