I have a couple of labels
That should have the following requirements
- minimum width of 38px
- right aligned
- height of 22px
- additional padding to the width of 8px on each side
so far I managed to get 1, 2 and 3 working (as the image indicates), but i have trouble on the 4th constraint
countLabel.snp_makeConstraints { make in
make.width.greaterThanOrEqualTo(38)
make.height.equalTo(22)
make.right.equalTo(-15)
}