From 0bff796ab1eef04597f04e35ac70168c23f4e62c Mon Sep 17 00:00:00 2001 From: Niels Andriesse Date: Thu, 13 May 2021 13:24:48 +1000 Subject: [PATCH] Fix slight misalignment --- Session/Open Groups/OpenGroupSuggestionGrid.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Session/Open Groups/OpenGroupSuggestionGrid.swift b/Session/Open Groups/OpenGroupSuggestionGrid.swift index 3bc78f7a1..b62af71fc 100644 --- a/Session/Open Groups/OpenGroupSuggestionGrid.swift +++ b/Session/Open Groups/OpenGroupSuggestionGrid.swift @@ -155,7 +155,7 @@ extension OpenGroupSuggestionGrid { stackView.spacing = Values.smallSpacing snContentView.addSubview(stackView) stackView.center(.vertical, in: snContentView) - stackView.pin(.leading, to: .leading, of: snContentView, withInset: Values.smallSpacing) + stackView.pin(.leading, to: .leading, of: snContentView, withInset: 4) snContentView.trailingAnchor.constraint(greaterThanOrEqualTo: stackView.trailingAnchor, constant: Values.smallSpacing).isActive = true snContentView.pin(to: self, withInset: Cell.contentViewInset) }