style: adjust order source cell spacing
This commit is contained in:
@ -77,7 +77,9 @@ final class OrderSourceLeadCell: UITableViewCell {
|
|||||||
cardView.addSubview(actionButton)
|
cardView.addSubview(actionButton)
|
||||||
|
|
||||||
cardView.snp.makeConstraints { make in
|
cardView.snp.makeConstraints { make in
|
||||||
make.edges.equalToSuperview().inset(UIEdgeInsets(top: 0, left: 0, bottom: 12, right: 0))
|
make.edges.equalToSuperview().inset(
|
||||||
|
UIEdgeInsets(top: 0, left: AppSpacing.md, bottom: 12, right: AppSpacing.md)
|
||||||
|
)
|
||||||
}
|
}
|
||||||
tagLabel.snp.makeConstraints { make in
|
tagLabel.snp.makeConstraints { make in
|
||||||
make.leading.top.equalToSuperview().inset(12)
|
make.leading.top.equalToSuperview().inset(12)
|
||||||
|
|||||||
@ -66,7 +66,9 @@ final class OrderSourcePersonCell: UITableViewCell {
|
|||||||
cardView.addSubview(chevronView)
|
cardView.addSubview(chevronView)
|
||||||
|
|
||||||
cardView.snp.makeConstraints { make in
|
cardView.snp.makeConstraints { make in
|
||||||
make.edges.equalToSuperview().inset(UIEdgeInsets(top: 0, left: 0, bottom: 10, right: 0))
|
make.edges.equalToSuperview().inset(
|
||||||
|
UIEdgeInsets(top: 0, left: AppSpacing.md, bottom: 10, right: AppSpacing.md)
|
||||||
|
)
|
||||||
}
|
}
|
||||||
nameLabel.snp.makeConstraints { make in
|
nameLabel.snp.makeConstraints { make in
|
||||||
make.leading.top.equalToSuperview().inset(14)
|
make.leading.top.equalToSuperview().inset(14)
|
||||||
|
|||||||
Reference in New Issue
Block a user