Skip to content

Commit 442abdd

Browse files
committed
🛠️ :: CompanyDetailLabel Layout 다시잡기
1 parent 71190d2 commit 442abdd

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

Projects/Presentation/Sources/CompanyDetail/Components/CompanyDetailLabel.swift

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,13 +34,15 @@ public final class CompanyDetailLabel: BaseView {
3434

3535
public override func setLayout() {
3636
title.snp.makeConstraints {
37-
$0.top.left.equalToSuperview()
37+
$0.top.equalToSuperview()
38+
$0.leading.equalToSuperview().inset(24)
3839
$0.width.equalTo(64)
3940
}
4041
content.snp.makeConstraints {
41-
$0.top.bottom.equalToSuperview()
42-
$0.left.equalTo(title.snp.right).offset(8)
43-
$0.right.equalToSuperview()
42+
$0.top.equalToSuperview()
43+
$0.leading.equalTo(title.snp.trailing).offset(8)
44+
$0.trailing.equalToSuperview().inset(24)
45+
$0.bottom.equalToSuperview().inset(16)
4446
}
4547
}
4648
}

0 commit comments

Comments
 (0)