1
0
mirror of https://github.com/bitwarden/mobile synced 2026-01-04 09:33:16 +00:00

Android style updates

This commit is contained in:
Kyle Spearrin
2016-08-18 20:20:18 -04:00
parent 4dfba13aea
commit 90a6855e39
5 changed files with 26 additions and 3 deletions

View File

@@ -27,6 +27,12 @@ namespace Bit.App.Controls
Tapped += FormEditorCell_Tapped;
if(Device.OS == TargetPlatform.Android)
{
Editor.FontSize = Device.GetNamedSize(NamedSize.Small, typeof(Label));
Editor.Margin = new Thickness(-4, -2, -4, -10);
}
View = stackLayout;
}

View File

@@ -38,6 +38,7 @@ namespace Bit.App.Controls
if(Device.OS == TargetPlatform.Android)
{
stackLayout.Spacing = 0;
Picker.Margin = new Thickness(-4, -2, -4, -10);
}
Tapped += FormPickerCell_Tapped;