1
0
mirror of https://github.com/bitwarden/mobile.git synced 2025-01-26 21:51:34 +01:00

minimum padding for ios header

This commit is contained in:
Kyle Spearrin 2017-11-27 22:53:01 -05:00
parent 615a7670bd
commit f79efadd82

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