Skip to content

Commit b703fa6

Browse files
committed
[fix/qa] fix: 메인 로고 수정
1 parent 9bc56b1 commit b703fa6

File tree

3 files changed

+2
-13
lines changed

3 files changed

+2
-13
lines changed
16.8 KB
Loading
26.4 KB
Loading

Projects/CommonUI/Sources/View/Login/LoginView.swift

Lines changed: 2 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,6 @@ import Then
1313
import RxRelay
1414

1515
open class LoginView: UIView {
16-
let logoLabel = UILabel().then {
17-
$0.text = "외국인 유학생을 위한 AI 한국어 학습 서비스,"
18-
$0.textColor = .black
19-
$0.font = .systemFont(ofSize: 16, weight: .bold)
20-
}
21-
2216
let logoView = UIImageView().then {
2317
$0.image = CommonUIAssets.logo
2418
$0.contentMode = .scaleAspectFit
@@ -96,19 +90,14 @@ open class LoginView: UIView {
9690
}
9791

9892
func initUI() {
99-
[logoLabel, logoView, loginButtonStackView]
93+
[logoView, loginButtonStackView]
10094
.forEach { self.addSubview($0) }
10195

10296
[lmLoginButton]
10397
.forEach { loginButtonStackView.addArrangedSubview($0)}
10498

105-
logoLabel.snp.makeConstraints {
106-
$0.bottom.equalTo(logoView.snp.top).offset(-15)
107-
$0.leading.equalTo(logoView.snp.leading)
108-
}
109-
11099
logoView.snp.makeConstraints {
111-
$0.height.equalTo(56)
100+
$0.width.equalToSuperview().inset(40)
112101
$0.centerY.equalToSuperview().offset(-50)
113102
$0.centerX.equalToSuperview()
114103
}

0 commit comments

Comments
 (0)