Skip to content

Commit

Permalink
Merge branch 'YS' into Dev
Browse files Browse the repository at this point in the history
  • Loading branch information
yeseonglee committed Nov 26, 2024
2 parents 9bca519 + 7f23b0a commit f392da4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions DropDrug/Sources/ViewControllers/Auth/SelectLoginTypeVC.swift
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand All @@ -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
Expand Down

0 comments on commit f392da4

Please sign in to comment.