We don't want the subviews to align to the stack view leading / trailing. We want to shift the aligning edge by 15. Another way of doing this is:
```
stackView.isLayoutMarginsRelativeArrangement = true
stackView.directionalLayoutMargins = NSDirectionalEdgeInsets(top: 0, leading: 15, bottom: 0, trailing: -15)
```