We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 71190d2 commit 442abddCopy full SHA for 442abdd
Projects/Presentation/Sources/CompanyDetail/Components/CompanyDetailLabel.swift
@@ -34,13 +34,15 @@ public final class CompanyDetailLabel: BaseView {
34
35
public override func setLayout() {
36
title.snp.makeConstraints {
37
- $0.top.left.equalToSuperview()
+ $0.top.equalToSuperview()
38
+ $0.leading.equalToSuperview().inset(24)
39
$0.width.equalTo(64)
40
}
41
content.snp.makeConstraints {
- $0.top.bottom.equalToSuperview()
42
- $0.left.equalTo(title.snp.right).offset(8)
43
- $0.right.equalToSuperview()
+ $0.leading.equalTo(title.snp.trailing).offset(8)
44
+ $0.trailing.equalToSuperview().inset(24)
45
+ $0.bottom.equalToSuperview().inset(16)
46
47
48
0 commit comments