From 217b28b0041168df6f51943b9b25eeb72b9b7073 Mon Sep 17 00:00:00 2001 From: gmbnt Date: Wed, 25 Mar 2020 15:52:34 +1100 Subject: [PATCH] Fix clipping --- Signal/src/Loki/View Controllers/DeviceLinksVC.swift | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Signal/src/Loki/View Controllers/DeviceLinksVC.swift b/Signal/src/Loki/View Controllers/DeviceLinksVC.swift index fbfcaac83..4090eafa2 100644 --- a/Signal/src/Loki/View Controllers/DeviceLinksVC.swift +++ b/Signal/src/Loki/View Controllers/DeviceLinksVC.swift @@ -219,12 +219,12 @@ private extension DeviceLinksVC { stackView.axis = .vertical stackView.distribution = .equalCentering stackView.spacing = Values.verySmallSpacing - stackView.set(.height, to: 36) + stackView.set(.height, to: 44) contentView.addSubview(stackView) stackView.pin(.leading, to: .leading, of: contentView, withInset: Values.largeSpacing) - stackView.pin(.top, to: .top, of: contentView, withInset: Values.mediumSpacing) + stackView.pin(.top, to: .top, of: contentView, withInset: 12) contentView.pin(.trailing, to: .trailing, of: stackView, withInset: Values.largeSpacing) - contentView.pin(.bottom, to: .bottom, of: stackView, withInset: Values.mediumSpacing) + contentView.pin(.bottom, to: .bottom, of: stackView, withInset: 12) stackView.set(.width, to: UIScreen.main.bounds.width - 2 * Values.largeSpacing) }