From f79efadd823deb6316100efd84d63559f0398643 Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Mon, 27 Nov 2017 22:53:01 -0500 Subject: [PATCH] minimum padding for ios header --- src/App/Controls/SectionHeaderViewCell.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/App/Controls/SectionHeaderViewCell.cs b/src/App/Controls/SectionHeaderViewCell.cs index 1a0771209..bbe39b181 100644 --- a/src/App/Controls/SectionHeaderViewCell.cs +++ b/src/App/Controls/SectionHeaderViewCell.cs @@ -19,7 +19,7 @@ namespace Bit.App.Controls var stackLayout = new StackLayout { - Padding = padding ?? new Thickness(16, Helpers.OnPlatform(5, 8, 8, 8)), + Padding = padding ?? new Thickness(16, Helpers.OnPlatform(2, 8, 8, 8)), Children = { label }, Orientation = StackOrientation.Horizontal };