Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Chore] #58 - 소셜로그인 뷰 UI 수정 #59

Merged
merged 2 commits into from
Jul 13, 2022
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ class SocialLoginVC: UIViewController {
lb.text = I18N.Auth.title
lb.font = UIFont(name: AppFontName.GodoB, size: 58)
lb.textColor = .mainRed
lb.textAlignment = .center

return lb
}()
Expand All @@ -31,13 +32,9 @@ class SocialLoginVC: UIViewController {
let boldFont = UIFont(name: AppFontName.appleSDGothicNeoBold, size: 14)!
lb.text = I18N.Auth.subTitle
lb.font = UIFont(name: AppFontName.appleSDGothicNeoMedium, size: 14)
lb.textColor = .helfmeBlack
lb.textColor = .helfmeGray1
lb.numberOfLines = 2
lb.textAlignment = .center
lb.setAttributedText(targetFontList: ["샐러드": boldFont,
"일반식": boldFont],
targetColorList: ["샐러드": .mainGreen,
"일반식": .mainRed])

return lb
}()
Expand All @@ -59,7 +56,6 @@ class SocialLoginVC: UIViewController {
// MARK: - View Life Cycle
override func viewDidLoad() {
super.viewDidLoad()

setLayout()
setAddTarget()
}
Expand Down