1
0
mirror of https://github.com/bitwarden/mobile synced 2025-12-17 00:33:20 +00:00

layout fixes

This commit is contained in:
Kyle Spearrin
2016-12-26 11:30:57 -05:00
parent 17e18a2a7a
commit 7728046309
2 changed files with 4 additions and 3 deletions

View File

@@ -135,12 +135,12 @@ namespace Bit.App.Pages
{
ColumnSpacing = 15,
RowSpacing = 0,
Padding = new Thickness(15, 25)
Padding = new Thickness(15, 20)
};
grid.AdjustPaddingForDevice();
grid.RowDefinitions.Add(new RowDefinition { Height = new GridLength(1, GridUnitType.Auto) });
grid.RowDefinitions.Add(new RowDefinition { Height = new GridLength(1, GridUnitType.Star) });
grid.RowDefinitions.Add(new RowDefinition { Height = new GridLength(1, GridUnitType.Auto) });
grid.ColumnDefinitions.Add(new ColumnDefinition { Width = new GridLength(44, GridUnitType.Absolute) });
grid.ColumnDefinitions.Add(new ColumnDefinition { Width = new GridLength(1, GridUnitType.Star) });
grid.Children.Add(image, 0, 0);