minimum padding for ios header

This commit is contained in:
Kyle Spearrin 2017-11-27 22:53:01 -05:00
parent 615a7670bd
commit f79efadd82
1 changed files with 1 additions and 1 deletions

View File

@ -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
};