Skip to content
This repository has been archived by the owner on Dec 7, 2024. It is now read-only.

Commit

Permalink
Merge pull request #181 from GSM-MSG/174-signInPage-design-change
Browse files Browse the repository at this point in the history
🔀:: 로그인 부분 Auth 디자인과 다른 부분 수정
  • Loading branch information
minaje0917 authored Mar 21, 2023
2 parents f40b16e + e6ed6e9 commit 6e2751f
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .package.resolved
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@
{
"identity" : "realm-core",
"kind" : "remoteSourceControl",
"location" : "https://github.com/realm/realm-core.git",
"location" : "https://github.com/realm/realm-core",
"state" : {
"revision" : "b77443ca7fa25407869ca537bf3ae912b1427bff",
"version" : "12.13.0"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,16 +19,19 @@ final class OnBoardingVC: BaseVC<OnBoardingReactor> {
$0.image = GCMSAsset.Images.gcmsgLogo.image.withRenderingMode(.alwaysOriginal)
}
private let tosStackView = UIStackView().then {
$0.spacing = 10
$0.spacing = 18
$0.axis = .horizontal
$0.alignment = .center
}
private let termsOfServiceButton = UIButton().then {
$0.setTitle("서비스 이용약관", for: .normal)
$0.titleLabel?.font = .systemFont(ofSize: 14)
$0.setTitleColor(GCMSAsset.Colors.gcmsGray4.color, for: .normal)
}
private let betweenButtonView = UIView().then {
$0.backgroundColor = GCMSAsset.Colors.gcmsGray4.color
private let betweenButtonView = UILabel().then {
$0.text = "|"
$0.font = .boldSystemFont(ofSize: 14)
$0.textColor = GCMSAsset.Colors.gcmsGray4.color
}
private let privacyButton = UIButton().then {
$0.setTitle("개인정보 처리 방침", for: .normal)
Expand All @@ -54,16 +57,13 @@ final class OnBoardingVC: BaseVC<OnBoardingReactor> {
.centerX(.toSuperview())

tosStackView.layout
.bottom(.to(view.safeAreaLayoutGuide).bottom, .equal(-24))
.bottom(.to(view.safeAreaLayoutGuide).bottom, .equal(-18))
.centerX(.toSuperview())

gauthSigninButton.layout
.bottom(.to(tosStackView).top, .equal(-8))
.horizontal(.toSuperview(), .equal(16))
.bottom(.to(tosStackView).top, .equal(-36))
.horizontal(.toSuperview(), .equal(20))
.height(50)

betweenButtonView.layout
.size(width: .equal(2), height: .equal(16))
}
}
override func setup() {
Expand Down

0 comments on commit 6e2751f

Please sign in to comment.