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

Commit

Permalink
refactor: 비밀번호 찾기 scene UI 위치 개선 #82
Browse files Browse the repository at this point in the history
  • Loading branch information
llghdud921 committed Jul 25, 2022
1 parent 8e7bf9c commit f683f69
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Weekand/Weekand/Application/SceneDelegate.swift
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ class SceneDelegate: UIResponder, UIWindowSceneDelegate {
window?.makeKeyAndVisible()
window?.overrideUserInterfaceStyle = .light

self.coordinator = MainCoordinator(navigationController: navigationController)
self.coordinator = AppCoordinator(navigationController: navigationController)
self.coordinator?.start()
}

Expand Down
2 changes: 1 addition & 1 deletion Weekand/Weekand/Presentation/Common/View/WTitleLabel.swift
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ class WTitleLabel: UILabel {
}

func setupView() {
font = UIFont(name: "PretendardVariable-Bold", size: 24)
font = WFont.title()
numberOfLines = 0
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -63,13 +63,13 @@ class PasswordFindViewController: UIViewController {
private func configureUI() {
self.view.addSubview(titleLabel)
titleLabel.snp.makeConstraints { make in
make.top.equalTo(self.view.safeAreaLayoutGuide.snp.top).offset(50)
make.top.equalTo(self.view.safeAreaLayoutGuide.snp.top).offset(30)
make.leading.equalToSuperview().offset(24)
}

self.view.addSubview(informLabel)
informLabel.snp.makeConstraints { make in
make.top.equalTo(titleLabel.snp.bottom).offset(20)
make.top.equalTo(titleLabel.snp.bottom).offset(15)
make.leading.equalToSuperview().offset(24)
}

Expand Down

0 comments on commit f683f69

Please sign in to comment.